(function($)
{		
})(jQuery);


$(document).ready(function(){

/// code

	//	Hide (Collapse) the toggle containers on load
		$(".toggle-history-conteiner").hide();
	
	
	//	Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
		$(".trigger-history").click(function(){
			$(this).toggleClass("active").next().slideToggle("slow");
			return false; //Prevent the browser jump to the link anchor
		});


/// END of code
	
});

	
