$(document).ready(function(){
  $("#playnot").hover(function(){
     $("#playnot").fadeOut("slow").fadeIn("slow");
  },function(){
     $("#playnot").fadeOut("slow").fadeIn("slow");
  });
  $("#notscud").hover(function(){
     $("#notscud").fadeOut("slow").fadeIn("slow");
  },function(){
     $("#notscud").fadeOut("slow").fadeIn("slow");
  });
  $("#notlett").hover(function(){
     $("#notlett").fadeOut("slow").fadeIn("slow");
  },function(){
     $("#notlett").fadeOut("slow").fadeIn("slow");
  });
  $("#notplay").hover(function(){
     $("#notplay img").fadeOut("slow").fadeIn("slow");
  },function(){
     $("#notplay img").fadeOut("slow").fadeIn("slow");
  });
});

