/*$(document).ready(function(){
	//Hide the tooglebox when page load
	$(".toggles .togglediv").hide();
	//slide up and down when click
	$(".togglehead").click(function(){        
		$(this).toggleClass('active').next('.toggles .togglediv').slideToggle('slow').next('.toggles .togglebottom').toggleClass('activebot');
			return false;			
	});       
	
	$(".toggles .togglebottom").click(function(){
		$(this).toggleClass("activebot").prev(".toggles .togglediv").slideToggle("slow").prev(".togglehead").toggleClass("active");
			return false;			
	});
});*/

$(document).ready(function(){
	//Hide the tooglebox when page load
	$(".toggles .togglediv").hide();
	//slide up and down when click
	 
	
	$(".toggles .togglebottom").click(function(){
		$(this).toggleClass("activebot").prev(".toggles .togglediv").slideToggle("slow");
			return false;			
	});
});
