/* Author: 
Louis Dalligos - http://louisdalligos.com
*/
// begin
$(document).ready(function(){
	
/*		
	// ACCORDION
	$('#nav #menu-main .sub-menu').hide();
	$('#menu-main .menu-item:first').addClass('active').next().show();
	
	//On Click
	$('#menu-main .menu-item a').hover(function(){
		if( $(this).next().is(':hidden') ) { //If immediate next container is closed...
			$('#menu-main .menu-item a').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
		}
		return false; //Prevent the browser jump to the link anchor
	});
	
}); //end






















