$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".folding_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("span.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});
	//Switch the "Open" and "Close" state per click
	$("span.blog_trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});
	

	//Slide up and down on click
$("span.blog_trigger").click(function(){
		$(this).next("#blog_category").slideToggle("fast");
	});
$("span.trigger").hover(function(){
		$(this).next(".folding_container").slideToggle("fast");
	});
});
