/*Cufon.replace('#topNav A');*/
$(function() {
	$("#topNav A")
		.filter(function(){return !$(this).parent().hasClass("on") && !$(this).parent().hasClass("firston")})
		.css("backgroundColor", "#CD0000")
		.hover(
			function() {$(this).stop().animate({backgroundColor:"#006531"}, 600);},
			function() {$(this).stop().animate({backgroundColor:"#CD0000"}, 400);}
		);
});