Makkssimka,
эхх живой это живой... картинки видны теги целы ...
$(document).ready(function () {
var timer;
$(".fcat img").mouseenter(function () {
timer = window.setTimeout(function () {
$(".fcat img").css("z-index", "10");
$(".fcat img").animate({
height: 230,
width: 230,
left: "-=15",
top: "-=15"
}, 300, function () {
$(".fcat img").next('#autorName').fadeIn(300);
$(".fcat img").nextAll('.reit').fadeIn(300);
});
}, 3000)
}).mouseleave(function () {
window.clearTimeout(timer)
$(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);
});;
});
});