/*
$(function() {	
	var elem = "#rail ul.news li";
	var c1 = "#464646";
	var c2 = "#000000";
	var bg1 = "#ffffff";
	var bg2 = "#fffbe6";
	var b1 = "#ffffff";
	var b2 = "#f2e8b6";
	var d1 = 2500;
	var q = "global";
	
	
	$(elem).each(function () {
		$(this).animate(
			{
				backgroundColor: bg2,
				borderTopColor: b2,
				borderRightColor: b2,
				borderBottomColor: b2,
				borderLeftColor: b2,
				color: c2
			},
			{
				duration: d1,
				queue: q
			}).animate(
			{
				backgroundColor: bg1,
				borderTopColor: b1,
				borderRightColor: b1,
				borderBottomColor: b1,
				borderLeftColor: b1,
				color: c1
			},
			{
				duration: d1,
				queue: q
			});
	});
	
	$.fxqueue(q).start();
});
*/