$(document).ready(function() {
 
	//Set default open/close settings
	$('.acc_container').hide(); //Hide/close all containers
	$('.active').next().show(); //Add "active" class to first trigger, then show/open the immediate next container
	
	//On Hover
	$('.acc_trigger').mouseenter(function(){
		if( $(this).next().is(':hidden') ) { //If immediate next container is closed...
			$('.acc_trigger').removeClass('active').next().slideUp(); //Remove all "active" state and slide up the immediate next container
			$(this).toggleClass('active').next().slideDown(); //Add "active" state to clicked trigger and slide down the immediate next container
		}
		
		//Prevent the browser jump to the link anchor
	});
});
/*
$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".acc_container").hide(); 
	$(".active").next().show();

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$(".acc_trigger").mouseenter(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});

})*/
