jQuery(document).ready(function(){

jQuery('.screenshot').hover(function(){
	jQuery(this).find(".votacion").stop().animate({bottom:'0px'},{queue:false,duration:160});
}, function() {
	jQuery(this).find(".votacion").stop().animate({bottom:'-40px'},{queue:false,duration:160});
});

});