function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		$(this).parent().prev('a').addClass("hovered");
		if($(this).children().find('img:first').attr("name")){
			$(this).find('img:first').attr("src",$(this).find('img:first').attr("src").replace(".gif", "_hl.gif"));
		}
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		$(this).parent().prev('a').removeClass("hovered");
		if($(this).children().find('img:first').attr("name")){
			$(this).find('img:first').attr("src",$(this).find('img:first').attr("src").replace("_hl.gif", ".gif"));
		}
		});
}

 
 
 $(document).ready(function(){					
	mainmenu();
});