$('document').ready(function(){
  $('.menu li').mouseover(function(){
     var om = $(this).attr('menu');
     $(this).children('a').not('.msel').css('color','#FFFFFF');
     $("#"+om+"sub.subm").css('left','-'+$(this).position().left+'px');
     $("#"+om+"sub.subm").css('z-index','5000');
     $("#"+om+"sub.subm").stop().animate({height: $("#"+$(this).attr('menu')).height()+'px' }, 400);
  });
  $('.menu li').mouseout(function(){
     $(this).children('a').not('.msel').css('color','#000000');
     var om = $(this).attr('menu');
     $("#"+om+"sub.subm").css('z-index','4800');
     $("#"+om+"sub.subm").stop().animate({height: '0px' }, 400);
  });
}); 
