<?php
$(document).ready(function() {
$("ul.gallery li").hover(function() { //En hover...
var thumbOver = $(this).find("img").attr("src"); //Obtener la direccion de la imagen y asiganarla a 'thumbOver'
//Definir una imagen de fondo (thumbOver) en la etiqueta <a> - Definir la posicion en la parte inferior (bottom)
$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
//Animar la imagen a opacidad 0 (fade out)
$(this).find("span").stop().animate({opacity: 0}, 300);
} , function() { //on hover out...
//Animar la imagen a opacidad 100% (fade in)
$(this).find("span").stop().animate({opacity: 1}, 300);
});
});