function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix
$(" #nav li").hover(
function(){
		$(this).find('a:first').css('background-color', '#fe9626');
		$(this).find('a:first').css('color', '#fff');
		$(this).find('a:first').css('-moz-box-shadow', '2px 2px 2px #666');
		$(this).find('a:first').css('-webkit-box-shadow', '2px 2px 2px #666');
		$(this).find('a:first').css('box-shadow', '2px 2px 2px #666');
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
		},function(){
			$(this).find('a:first').css('color', '');
		$(this).find('a:first').css('background-color', '');
		$(this).find('a:first').css('-moz-box-shadow', '');
		$(this).find('a:first').css('-webkit-box-shadow', '');
		$(this).find('a:first').css('box-shadow', '');
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}

 
 
 $(document).ready(function(){					
	mainmenu();
});
