$(document).ready(function(){
	$("#nav ul li").hover(function() {
		$("a:not(.selected)", this).stop().animate({ 
			top: "5px"
		}, 100 );
	}, function() {
		$("a:not(.selected)", this).stop().animate({ 
			top: "0"
		}, 100 )
	});
});