
$(function() {
	// background fade on navigation. Using Jquery color plugin.
	$("#nav a").hover(
		function() {
			$(this).animate({backgroundColor: "#99A459"}, "fast").css({"z-index": "2", "position": "relative"})
		}, 
		function() {
			$(this).animate({backgroundColor: "#000"}, "fast").css("position", "static")
		}
	);
});