jQuery(document).ready(function(){

  $('.lmenutop1').hover(function() {
   $(this).find('.divpmenu').fadeIn(100);
   $(this).css('background-Color','#f7de44');
  }, function() {
   $(this).find('.divpmenu').fadeOut(100);
   $(this).css('background-Color','#ccae1a');

  });
  $('.lmenutop2').hover(function() {
   $(this).find('.divpmenu2').fadeIn(100);
   $(this).css('background-Color','#f7de44');
  }, function() {
   $(this).find('.divpmenu2').fadeOut(100);
   $(this).css('background-Color','#ccae1a');

  });

});

