var $j = jQuery.noConflict();
$j(document).ready(function(){
	$j("ul.extranav ul li:nth-child(odd)").addClass("odd");
	
	$j("ul.extranav > li > a").mouseover(function(){
		$j(this).animate({ backgroundColor: "#ff6600" }, 300);
	});
	$j("ul.extranav > li > a").mouseout(function(){
		$j(this).animate({ backgroundColor: "#5a1f00" }, 300);
	});
	
	$j("ul.extranav ul li:nth-child(odd) a").mouseover(function(){
		$j(this).animate({ backgroundColor: "#d5b899" }, 300);
		$j(this).css("color", "#7b3f00");
	});
	$j("ul.extranav ul li:nth-child(odd) a").mouseout(function(){
		$j(this).animate({ backgroundColor: "#e9d3bc" }, 300);
		$j(this).css("color", "#8d3400");
	});
	
	$j("ul.extranav ul li:nth-child(even) a").mouseover(function(){
		$j(this).animate({ backgroundColor: "#dec4ab" }, 300);
		$j(this).css("color", "#7b3f00");
	});
	$j("ul.extranav ul li:nth-child(even) a").mouseout(function(){
		$j(this).animate({ backgroundColor: "#f2e8de" }, 300);
		$j(this).css("color", "#8d3400");
	});
	
	
});