if (Drupal.jsEnabled) {
    $(document).ready(function() {
        $("#foto_del_giorno img.imagecache, #galleria img.imagecache").each(function() {
            if(!$(this)[0].complete) {
                $(this).hide();
                $(this).after('<div class="fake-foto"></div>');
                $(this).load(function() {
                    $(this).next(".fake-foto").remove();
                    $(this).fadeIn('1500');
                });
            }
        });
    });

    $(window).load(function () {
      $(".fake-foto").remove();
      $("#foto_del_giorno img.imagecache, #galleria img.imagecache").fadeIn('1500');
    });
}
