$(document).ready(function(){
//Hide the tooglebox when page load
$(".togglebox").hide(); 
//slide up and down when hover over heading 2
$("h2").hover(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".togglebox").slideToggle("slow");
return true;
});
});

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".togglebox1").hide(); 

	//Slide up and down on hover
	$("h2").click(function(){
		$(this).next(".togglebox1").slideToggle("medium");
	});

});


/*$(document).ready(function(){
//Hide the tooglebox when page load
//$("li.menu-item").hide(); 
//slide up and down when hover over heading 2
$("#nav1 li").click(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".children").slideToggle("slow");
return true;
});
});*/

//$(document).ready(function(){
//
//	//Hide (Collapse) the toggle containers on load
//	/*$(".children").hide(); */
//
//	//Slide up and down on hover
//	$("#nav1").click(function(){
//		$(this).next(".children").slideToggle("medium");
//	});
//
//});
