	$(document).ready(function() {
		$(".img_categoria_int1").hover(function() {
			var e = this;
		    $(e).find("img").stop().animate({ marginTop: "-14px" }, 250, function() {
		    	$(e).find("img").animate({ marginTop: "-0px" }, 250, function() {
		    		$(e).find("img").animate({ marginTop: "-6px" }, 250, function() {
		    			$(e).find("img").animate({ marginTop: "0px" }, 250);
					}); 
			    });
		    });
		});						
	});
