$(document).ready(function() {

	$(".projects li").hover(function() {

		var thumbOver = $(this).find("img").attr("src"); 

		$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});

		$(this).find("span").stop().animate({opacity: 0}, 300);

	} , function() {

		$(this).find("span").stop().animate({opacity: 1}, 300);

	});

});
