$(document).ready(function(){
  $("img.fade").hover(function() {
    $(this).stop().animate({opacity: "1"}, 'fast');
  }, function() {
    $(this).stop().animate({opacity: "0.4"}, 'fast');
  });
});

$(document).ready(function(){
  $("img.welcome").hover(function(){
      $(this).filter(':not(:animated)').animate({opacity: "1"}, 2000);
  }, function() {
      $(this).animate({opacity: "0"}, 2000);
  });
});
