
(function($){

	$(document).ready(function(){
		$('#article div.faq a').click(function(){
			var popup = window.open(this.href, 'gingerHelp', 'menubar=yes,toolbar=no,location=yes,status=yes,scrollbars=yes,resizable=yes,width=800,height=800');
			popup.focus();
			return false;
		});
	});

})(jQuery);

