Awesome Bubble Navigation with jQuery



[script type=”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js”][/script]
[script type=”text/javascript” src=”jquery.easing.1.3.js”][/script]
[script type=”text/javascript”]
$(function() {
$(‘#nav > div’).hover(
function () {
var $this = $(this);
$this.find(‘img’).stop().animate({
‘width’ :’199px’,
‘height’ :’199px’,
‘top’ :’-25px’,
‘left’ :’-25px’,
‘opacity’ :’1.0′
},500,’easeOutBack’,function(){
$(this).parent().find(‘ul’).fadeIn(700);
});