;(function(window){
$('.menuitem').hover(function(){
$('>a',this).css('background-color','#60aeeb');
$('.subnav',this).show();
},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);