// JavaScript Document
jQuery(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	jQuery(".toggle_eff").hide(); 

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	jQuery(".trigger").click(function(){
		jQuery(this).toggleClass("active").prev().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});

});;

