$(function(){

	$('.panel-wrapper li').hover(function(){
		$(this).find('img').animate({top:'170px'},{queue:false,duration:550});
	}, function(){
		$(this).find('img').animate({top:'0'},{queue:false,duration:550});
	});

});


