<!-- Links hover color fade -->

$(document).ready(function(){
	$("a").hover(function() { //mouseover
		var currentId = $(this).attr('id');
		//alert(currentId);
		if (currentId != "current")
		{
			$(this).stop().animate({'color': '#114'}, 500);
		}
	},function() { //mouseout
		var currentId = $(this).attr('id');
		if (currentId != "current")
		{
			$(this).stop().animate({'color': '#88b'}, 500);
		}
	});
});