jQuery(function($){
    $(document).ready(function(){
         $(".toggle_container").hide();
         $("div.trigger").click(function(){
         var toggleClick = $(this);	
         // this reads the rel attribute of the button to determine which div id to toggle
         var toggleDiv = $(this).attr('rel');
         $(this).toggleClass("trig-active");
         $(toggleDiv).slideToggle("normal");
        return false; //Prevent the browser jump to the link anchor
    });
    });
});