
$(document).ready(function(){
	
	<!--$(".accordionw h3:first").addClass("active");-->
	$(".accordionw p").hide(); //$(".accordionw p:not(:first)").hide();

	$(".accordionw h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

$(".accordionw a ").click(function(){
	
		$(this).toggleClass("c_bg2");
		$(this).siblings("a").removeClass("c_bg2");
	});




});



$(document).ready(function(){
	
	<!--$(".accordionw .title:first").addClass("active");-->
	$(".accordionw .first_tab").hide();//$(".accordionw .first_tab:not(:first)").hide();

	$(".accordionw .title").click(function(){
		$(this).next(".first_tab").slideToggle("slow")
		.siblings(".first_tab:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings(".title").removeClass("active");
	});



});

/*
$(document).ready(function(){
	
	
	$(".accordionw p").hide();

	$(".accordionw h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});

$(".accordionw a ").click(function(){
	
		$(this).toggleClass("c_bg");
		$(this).siblings("a").removeClass("c_bg");
	});


});



$(document).ready(function(){
	

	$(".accordionw .first_tab").hide();

	$(".accordionw .title").click(function(){
		$(this).next(".first_tab").slideToggle("slow")
		.siblings(".first_tab:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings(".title").removeClass("active");
	});



});
*/
