/**
* @author Fazal Khan
*/
/*@cc_on 
       @if (@_win32)
         try {
            document.execCommand('BackgroundImageCache', false, true);
           } catch(e) {}
       @end
@*/
var jAccordian = {
	init : function(){
		$('div.faq-module').find('div.faq-content').hide().end().find('h2').addClass("activated").hover(
			function(){
				$(this).bind("click", function(){
					var heading = $(this);
					var answers = $(this).next();
					if (answers.is(':visible')) {
						answers.slideUp("fast");
						heading.removeClass("dtactive");
					} else {
						answers.slideDown("fast")
						heading.addClass("dtactive");
					}
				});	 
			}
			,function(){
  			$(this).unbind( "click" );
		});
	}
};
$(document).ready(function(){
	jAccordian.init();
});



function popup(url){
	window.open(url,'login', 'toolbar=0,width=1000,height=615,scrollbars=yes,resizable=yes');
}