    $(function() { 
	    $("#navwrapper a").not(".current").hover(
	      function () {
		$(this).css("top", "5px");
	      }, 
	      function () {
		$(this).css("top", "7px");
	      }
	    );
    }); 
