$(function(){
	$("ul#mainNav li:not('.current') a").hover(function() {
	
	    $(this).css({
	    	color: "#111"
	    }).stop().animate({
	    	color: "#cfe8ff"
	    }, 200);
	
	},
	
	function() {
	
	    $(this).stop().animate({
	    	color: "#111"
	    }, 200);
	});
});

