Отстой. Анимация на js устарела. Поздно взялся за нее. CSS анимации в тренде:
<style>
#effect{
background: #fff;
color: #000;
width: 240px;
transition: all 1s;
transition-delay: 1.5s;
}
#effect:hover{
background: #aa0000;
color: #fff;
width: 500px;
transition-delay: 0ms;
}
</style>
<div id="effect" >
<h3 >Animate</h3>
<p>
Text
</p>
</div>