
function mainmenu(){

$(" #nav_head iframe ").css({"display": "none", "position": "fixed", "padding": "0px", "margin": "0px"}); // Opera Fix
$(" #nav_head ul ").css({display: "none"}); // Opera Fix
$(" #nav_head li").hover(function(){
		$(this).find('iframe:first').css({width: $(this).find('ul:first').width() + 17});
		$(this).find('iframe:first').css({height: $(this).find('ul:first').height() + 12});
		
		$(this).find('ul:first').show();
		$(this).find('iframe:first').show();
		},function(){
		$(this).find('iframe:first').hide();
		$(this).find('ul:first').hide();
		});
}

 
 
 $(document).ready(function(){					
	mainmenu();
});