jQuery(document).ready(function()
{	  	
	menuAnimation();
});

function menuAnimation() {
	$("#menu ul li a:not(#menu ul li.active a)").hover(function() {
		$(this).children("span").stop().animate( { top: "-42px" }, 200);
		$(this).css("height", "32px").stop().animate( { borderBottomWidth: "3px" }, 200);
	}, function() {
		$(this).children("span").stop().animate( { top: "-82px" }, 200);
		$(this).css("height", "35px").stop().animate( { borderBottomWidth: "1px" }, 200);
	});
}
   
