Ясно, спасибо. Теперь вопрос в другом, как остановить анимацию ? И чтоб потом работало=))
$(document).ready(
function(){
$("#logo").mouseenter(
function (){
$(this).css({"background-color" : "aqua"}).fadeOut(1000);
setTimeout(function(){$("#logo").stop();}, 1000);
}
);
$("#logo").mouseleave(
function (){
$(this).css({"background-color" : "white"}).fadeIn(1000);
}
);
}
);
Что-то не катит((