$(document).ready(function() {
	$(".catproduse a").hover(function(){
		$(this).children().stop(true, true);
    	$(this).children("img").animate( { top: "5px" }, 100);
    	$(this).children("em").animate( { opacity: 0.6 }, 200);
	},
	function(){
		$(this).children("img").animate( { top: "0px" }, 100);
    	$(this).children("em").animate( { opacity: 1.0 }, 200);
	});
});
