//$(document).ready

initmenu=function($) {

	$("ul.menudepth1>li").hover(function() {
		// Following events are applied to the mainmenu2 itself (moving
		// mainmenu2 up and down)
			var currentElement=this;
			if (!$(this).attr('isShowing')||$(this).attr('isShowing')=='false') {
				$(this).attr('isShowing', true);
				$(this).find("ul.menudepth2").slideDown('fast').show(function() {
					$(currentElement).attr('isShowing', false);
					}); // Drop down the mainmenu2 on click
				//$(this).addClass("subhover"); // On hover over, add class
												// "subhover"
			}
			$(this).addClass("subhover");
		}, function() { // On Hover Out
				$(this).find("ul.menudepth2").slideUp('slow');
				$(this).removeClass("subhover"); // On hover out, remove
													// class "subhover"

			});

};
