//Animate registration link in left navigation
sponsorsDiv = document.getElementById("register");

colorTween = new ColorTween(document.getElementById('register').style, 'color', Tween.linear, 'FFFF00', '89C445', 3);
colorTween.onMotionFinished = function()
{
	this.yoyo()
};
colorTween.start();