Can any one help me, i already checked resizing demo but this work through handles but i need on hover and when div scale then other content automatically go below like this link http://sea-hunters.com/ in this link right side menu have effect on hover?
You can resize using the jQuery animate function.
$('ul li').hover(function(){
$(this).animate(... //animate height and width
}, function(){
$(this).animate(... //animate back
});