var showing = "";	

$(document).ready(function(){	
	
	$(".faq").click(function(){
		var thisid = this.id;
		var divid = thisid+'1';
		//var divname= this.value;		
		if (thisid == showing) {
			$("#"+showing+'1').hide();
			showing = "";
		}
		else {
			if (showing){
					$("#"+showing+'1').hide();
					$("#"+showing).show();
			}
			//$("#"+thisid).hide();
			//$("#"+divid).show("slide", { direction: "down" }, 500);	
			$("#"+divid).show()	;	
			showing = thisid;
		}
	});
	   
	
	$("#faqall").click(function(){
		if ($('#faqall').text() == "show all") {
			$('div.qa').css("display","block"); 
			$('#faqall').html("hide all"); 	
		}
		else {
			$('div.qa').css("display","none"); 
			$('#faqall').html("show all");  
		}
	});
	
	
	$(".custombutton1").hover(
		function(){
			$(this).addClass('custombutton1hover');
			},
		function(){
			$(this).removeClass('custombutton1hover');
			}
		);
}); // END Document Ready
