<!--

var start_x = 600;
var step=-2;
var last_x, posi_x, timerID;
var static_y = 180;
var static_y = 180;
posi_x = start_x;

function Init(){
	if(document.all)
	{
		last_x = 300;
		whatsnew.style.pixelLeft = start_x;
		whatsnew.style.pixelTop = static_y;
		move_text();
	}
	else if(document.layers)
	{
		last_x = 300;
		document.whatsnew.left = start_x;
		document.whatsnew.top = static_y;
		move_text();
	}
	else if(navigator.userAgent.match( /Opera/ ))
	{
		last_x = 295;
		static_y-=50;
		document.whatsnew.left = start_x;
		document.whatsnew.top = static_y;
		move_text();
	}
}

function move_text(){
	if( posi_x < last_x ){
		clearTimeout(timerID);
	}
	else{
		posi_x += step;
		if(document.all){
			whatsnew.style.pixelLeft = posi_x;
		}
		else if(document.layers){
			document.whatsnew.left = posi_x;
		}
		else if(navigator.userAgent.match( /Opera/ )){
			document.whatsnew.left = posi_x;
		}
		timerID = setTimeout("move_text()", 10);
	}
}


//-->

