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