$(document).ready(function() {
	$("div#nav ul li a").css({background: "#785240 url('images/nav/tan-highlight-bar.gif') no-repeat scroll -200px top"}).hover(function(){
		$(this).css("background-position","-30px top").animate({"backgroundPosition": "0"}, 250);
	},function(){
		$(this).animate({"backgroundPosition": "-200px"}, 470);
	});
});
