	$ (function() {
		$('#nav li').hover(function(e) {
			var $thisLI = ($(this).get(0).tagName == 'LI') ? $(this) : $(this).parent();
			$thisLI.css('background','#f4eed9');
		} , function() {
			var $thisLI = ($(this).get(0).tagName == 'LI') ? $(this) : $(this).parent();
			$thisLI.css('background','transparent');
			//alert($(thisLI).index());
		});
		
	});
