рони, а как это прикрутить к этому скрипту:
$(document).ready(function() {
$('.fcat img').hover(
function(){
$(this).css("z-index", "10");
$(this).animate({height: 230, width: 230, left: "-=15", top: "-=15"}, 300, function() {
$(this).next('#autorName').fadeIn(300);
$(this).nextAll('.reit').fadeIn(300);
});
}, function (){
$(this).animate({height: 200, width: 200, left: "+=15", top: "+=15"}, 300, function() {
$(this).css("z-index", "0");
$(this).next('#autorName').fadeOut(300);
$(this).nextAll('.reit').fadeOut(300);
});
});
});
</script>