$(function() {
    $(".carousel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });
			 
    $(".carousel li").hover(function() { 
	
        var thumbOver = $(this).find("img").attr("src"); 
				
        $(this).find("a").css({
            'background' : 'url(' + thumbOver + ') no-repeat center bottom'
        });
	
        $(this).find("span").stop().fadeTo('normal', 0 , function() {
            $(this).hide()
        });
    } , function() { 
        $(this).find("span").stop().fadeTo('normal', 1).show();
    });
});
