

$(document).ready(function(){
	
	$(".toggle_container").hide();

	$("div.trigger").click(function(){
 if ($(this).next().is(":hidden")) {
            $(this).next().slideDown("fast");
            
   return false; // slide it down
        } else {
            $(this).next().hide(); // hide it
   return false;
        }

		
		

		
		
		
	});

});




