// JavaScript Document
//$(document).ready(function () {
//  $(".fadeFoto").fadeTo(0, 1);
//  $(".fadeFoto").hover(
//    function () {
//      $(this).fadeTo("normal", 0);
//    },
//    function () {
//      $(this).fadeTo("fast", 1);
//    }
//  );
//});

jQuery(document).ready(function () {
 jQuery(".fadeFoto").fadeTo(0, 1);
 jQuery(".fadeFoto").hover(
   function () {
     jQuery(this).stop(true,true).fadeTo("low", 0);
   },
   function () {
     jQuery(this).stop(true,true).fadeTo("low", 1);
   }
 );
});
