/***********************************************************************************************************************
DEVELOPED/HACKED BY: Phil Higgs!
************************************************************************************************************************/

$(document).ready(function() {
	
	/********************************************************************************************************************
	SIMPLE SLIDE STYLE MENU FUNCTION
	********************************************************************************************************************/	
	var LastClick = null;
	$('div.menuLink').each(function() {
	    $(this).click(function(){
            var id=$(this).attr("id");
	        if (LastClick == id) {
	            // Close opened container
	            $(".menuContent[id='"+LastClick+"_content']").slideToggle('normal');
	            LastClick = null;
	        } else {
	           
	            // Open clicked container
		        $(".menuContent[id='"+id+"_content']").slideToggle('normal');
		        LastClick = id;
		    }
		});
	});
	
	/********************************************************************************************************************
	CLOSES ALL DIVS ON PAGE LOAD
	********************************************************************************************************************/	
	$("div.menuContent").hide();

});

