jQuery().ready(function(){
  
  $(".menuPrincipal div a.nonselect img").mouseover(function(){

    $(this).animate({
      top:"0px"
      }, 400);

  }).mouseout(function(){
    
    $(this).animate({
      top:"15px"
      }, 400);
    
  });
    
});
