;(function(window){
$('.menuitem').hover(function(){
$('>a',this).css('background-color','#60AEEC');
$('.subnav',this).show();
$('.subnav',this).width(function(){
return $('.subnav').children("li:visible").width()*$('.subnav').children("li:visible").length;
});
var sleft = $(this).offset().left-($('.subnav').children("li:visible").width()*$('.subnav').children("li:visible").length-150)/2;
$('.subnav',this).offset({left:sleft});
},function(){
if( !$(this).hasClass('selected') )
$('>a',this).css('background-color','transparent');
$('.subnav',this).hide();
});
/*$('.subnav').hover(function(){},function(){
$('>a',this).css('background-color','transparent');
$(this).hide();
});*/
})(window);