var $q = jQuery.noConflict();
$q(function(){
$q(".footer-logo-holder ul.gallery li").hover(function() { //On hover...
		var thumbOver = $q(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'
		//Set a background image(thumbOver) on the <a> tag - Set position to bottom
		$q(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		//Animate the image to 0 opacity (fade it out)
		$q(this).find("span").stop().animate({opacity: 0}, 300);

	} , function() { //on hover out...
		//Animate the image back to 100% opacity (fade it back in)
		$q(this).find("span").stop().animate({opacity: 1}, 300);
	});
});	