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