$(document).ready(function(){
   // Change the image of hoverable images
   
   $("a .image").hover( function() {
       $(this).children(".displaynone").css("display","block");
     }, function() {
       $(this).children(".displaynone").css("display","none");
     }
   );
});

