// WebTicker by Mioplanet
// www.mioplanet.com

//TICKER_CONTENT = document.getElementById("TICKER").innerHTML;
//TICKER_RIGHTTOLEFT = false;
//TICKER_SPEED = 2;
//TICKER_STYLE = "font-family:Arial; font-size:12px; color:#444444";
//TICKER_PAUSED = false;

function ticker_start() {
	var ticker=document.getElementById("TICKER");
	if(ticker!=null) {
		TICKER_CONTENT = ticker.innerHTML;
		TICKER_RIGHTTOLEFT = false;
		TICKER_SPEED = 2;
		TICKER_STYLE = "";
		TICKER_PAUSED = false;

		var tickerSupported = false;
		TICKER_WIDTH = ticker.style.width;
		var img = "<img src=/images/ticker_space.gif width="+TICKER_WIDTH+" height=0>";

		// Firefox
		if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Safari")!=-1) {
			ticker.innerHTML = "<TABLE  cellspacing='0' cellpadding='0' width='100%'><TR><TD nowrap='nowrap'>"+img+"<SPAN style='"+TICKER_STYLE+"' ID='TICKER_BODY' width='100%'>&nbsp;</SPAN>"+img+"</TD></TR></TABLE>";
			tickerSupported = true;
		}
		// IE
		if(navigator.userAgent.indexOf("MSIE")!=-1 && navigator.userAgent.indexOf("Opera")==-1) {
			ticker.innerHTML = "<DIV nowrap='nowrap' style='width:100%;'>"+img+"<SPAN style='"+TICKER_STYLE+"' ID='TICKER_BODY' width='100%'></SPAN>"+img+"</DIV>";
			tickerSupported = true;
		}
		if(!tickerSupported) document.getElementById("TICKER").outerHTML = ""; else {
			ticker.scrollLeft = TICKER_RIGHTTOLEFT ? ticker.scrollWidth - ticker.offsetWidth : 0;
			document.getElementById("TICKER_BODY").innerHTML = TICKER_CONTENT;
			ticker.style.display="block";
			TICKER_tick();
		}
	}
}

function TICKER_tick() {
	var ticker=document.getElementById("TICKER");
	if(ticker!=null) {
		if(!TICKER_PAUSED) ticker.scrollLeft += TICKER_SPEED * (TICKER_RIGHTTOLEFT ? -1 : 1);
		if(TICKER_RIGHTTOLEFT && ticker.scrollLeft <= 0) ticker.scrollLeft = ticker.scrollWidth - ticker.offsetWidth;
		if(!TICKER_RIGHTTOLEFT && ticker.scrollLeft >= ticker.scrollWidth - ticker.offsetWidth) ticker.scrollLeft = 0;
		window.setTimeout("TICKER_tick()", 30);
	}
}

