var dspeed  = 250;

$(document).ready(function () {
  $(".main_menue>li").mouseenter(function() {
  $(this).find("a.level-2").css({height: '0%', 'font-size': '10%', 'opacity': '0'});
  $(this).find("a.level-2").animate({ height: '100%', 'font-size': '100%' ,opacity: '1'}, dspeed );
  });

});
