/* Copyrighted by MORIZO*/

$(document).ready(function(){
$(".change td").mouseover(function() {
  $("img:last",this).show()
  $("img:first",this).hide();
  })
  .mouseout(function() {
    $("img:last",this).hide()
    $("img:first",this).show();
  });


$('img#menu').mouseover(function() {
  $("img#menu").css("cursor", "poiter");
  });

});