//Get the document ready
  $(document).ready(function(){
  	
  	//On load hide the the div inside a toggle block
  	 $(".toggle div").hide();
  	 
     //On click toggle the next div
     $(".toggle h6").click(function(event){
    	$(this).next().slideDown().toggle();
     	
// Stop the link click from doing its normal thing
       return false;
     });
   });


