$(document).ready(function()
{    
    $(".image").hover(
      function () {
        $(".info").fadeToggle('slow');
      }
    );
});​

