$(function(){
	$("#thumbs ul li").hover(function(){
		$("img", this).stop().animate({top:"-130px"},{queue:false,duration:400});
	}, function() {
		$("img", this).stop().animate({top:"0px"},{queue:false,duration:400});
	});
});