$(document).ready(function(){
	//common
	$(".accordion-wrapper h3").eq(-1).addClass("active");
	$(".accordion-wrapper .accordion").eq(-1).show();

	$(".accordion-wrapper h3").click(function(){
		$(this).next(".accordion").slideToggle("slow")
		.siblings(".accordion:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});//end
	
	//faq page
	$(".faq-ansque h4").eq(0).addClass("active");
	$(".faq-ansque .ans").eq(0).show();

	$(".faq-ansque h4").click(function(){
		$(this).next(".ans").slideToggle("fast")
		.siblings(".ans:visible").slideUp("fast");
		$(this).toggleClass("active");
		$(this).siblings("h4").removeClass("active");
	});//end
	

});


