 $(document).ready(function() {
 	
 	//close all the content divs on page load that have toggle class
$('.toggle').hide();

 	
   $("#tgl_infoBox").click(function(){
     $("#infoBox").slideToggle("slow");
   });

   
 });
