$(document).ready(function(){
	enableMenu();
});
function enableMenu(){
	//Hide all submenus
	$("ul.submenu").not("#nav1sMenu0").each(function(){
		toggleMenu($(this),"");
	});
	//user cursor for menu buttons
	$("div.menuLink").css("cursor","pointer");	
	
	//onclick buttons
	$("div.menuLink").click(function() {	
		toggleMenu($(this).next(),"fast");
	});	

}

function toggleMenu(which,speed){
	which.toggle(speed);
	which.parent().find("div.menuoff").toggle();
	which.parent().find("div.menuon").toggle();
}