$(function(){
	
	$('#showcase li').hover(function(){
		$(this).find('img').animate({left:'239px'},{queue:false,duration:500});
	}, function(){
		$(this).find('img').animate({left:'0px'},{queue:false,duration:500});
	});

});