$(function(){
	$(".faqAns").hide();
	if(location.hash != ""){
		$(location.hash + " ul").show();
	}
	$(".faqQues").toggle(
		function(){
			$(this).next().show();
		},
		function(){
			$(this).next().hide();
		}
	);
});