
$(document).ready(function(){

//Hide the tooglebox when page load

$(".togglebox").hide(); 

//slide up and down when hover over heading 2

$("h6").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

	$("h6").click(function(){

		$(this).next(".togglebox1").slideToggle("slow");

	});



});

$(document).ready(function(){



	//Hide (Collapse) the toggle containers on load

	$(".togglebox1-sm").hide(); 



	//Slide up and down on hover

	$("h6").click(function(){

		$(this).next(".togglebox1-sm").slideToggle("slow");

	});



});

$(document).ready(function(){



	//Hide (Collapse) the toggle containers on load

	$(".togglebox1-sm2").hide(); 



	//Slide up and down on hover

	$("h6").click(function(){

		$(this).next(".togglebox1-sm2").slideToggle("slow");

	});



});
$(document).ready(function(){



	//Hide (Collapse) the toggle containers on load

	$(".togglebox1-sm3").hide(); 



	//Slide up and down on hover

	$("h6").click(function(){

		$(this).next(".togglebox1-sm3").slideToggle("slow");

	});



});

$(document).ready(function(){



	//Hide (Collapse) the toggle containers on load

	$(".togglebox1-med").hide(); 



	//Slide up and down on hover

	$("h6").click(function(){

		$(this).next(".togglebox1-med").slideToggle("slow");

	});



});

$(document).ready(function(){



	//Hide (Collapse) the toggle containers on load

	$(".togglebox-faq").hide(); 



	//Slide up and down on hover

	$("h6").click(function(){

		$(this).next(".togglebox-faq").slideToggle("slow");

	});



});
