<div id="link" class="ease1">
<a href="#"><img src="home.png" alt="" name="home" /></a>
<div class="ease2">
<a href="#"><img src="home2.png" /></a>
</div>
</div>
$(document).ready(function(){
$(".ease1").mouseover(function(){
$('div', this).stop().animate({
height: '156px'},{queue:false, duration:600, easing: 'easeOutBack'
})
});
$(".ease1").mouseout(function(){
$('div', this).stop().animate({
height: '0px'},{queue:false, duration:600, easing: 'easeOutBack'
})
});
$(".ease1").mouseover(function(){
$(this).stop().animate({
top: '-20px'},{queue:false, duration:600, easing:'easeOutBack'
})
});
$(".ease1").mouseout(function(){
$(this).stop().animate({
top: '0px'
}, 600, function(){
});
});
});