// JavaScript Document
jQuery(function(){
jQuery('#menu a').not(jQuery('#menu a.hover')).hover(function(){
jQuery(this).find('i').stop().animate({top:'-43px'},300);
jQuery(this).find('b').stop().animate({top:'0'},300);
},function(){
jQuery(this).find('i').stop().animate({top:'0'},200);
jQuery(this).find('b').stop().animate({top:'43px'},200);
})
})


