$(function(){
	$('#left ul li:not(.active) a, #right ul li:not(.active) a').mouseover(function(){
		$(this).animate({color:"#F38A1A"}, {queue:false, duration:500});
		$(this).parent().parent().parent().parent().parent().animate({backgroundColor:"#F38A1A"}, {queue:false, duration:500});
	});
	$('#left ul li:not(.active) a, #right ul li:not(.active) a').mouseout(function(){
		$(this).animate({color:"#E11B25"}, {queue:false, duration:500});
		$(this).parent().parent().parent().parent().parent().animate({backgroundColor:"#E11B25"}, {queue:false, duration:500});
	});
});