(function(){
	$("#header .nav li a").hover(function(){
		$(this).next("b").animate({top:"-68", height:"98"}, "fast")
	}, function(){
		$(this).next("b").animate({top:"6", height:"57"}, "fast")
	})
})