$(document).ready(function(){
	$("a.producteHome").hover(function(){
		 $(this).children(".over").stop().animate({top:'180px', left:'220px'},{queue:false,duration:200});
	}, function(){
		$(this).children(".over").stop().animate({top:'0px', left:'0px'},{queue:false,duration:200});
	})
})
