$(document).ready( function(){
	$(".cat-photo a").hover(function() {
									 $(this).css({'z-index' : '10'});
		$(this).find('img').addClass("hover").stop()
			.animate({
				marginTop: "10px"
			}, 200);
		} , function() {
			$(this).css({'z-index' : '0'});
		$(this).find('img').removeClass("hover").stop()
			.animate({
				marginTop: "0px"
			}, 400);
	});
});
