<!-- Begin
// news ticker function
var newslist=new Array();
var cnt=0;			// current news item
var curr = "";
var i=-1;			// current letter being typed


newslist[0] = new Array("Iraqi results today: Panel", "http://www.worldofnews.com/view-4699114-Iraqi-results-today-Panel.html");

newslist[1] = new Array("Celebrities react to Corey Haim death via Twitter - Entertainment Weekly", "http://www.worldofnews.com/view-4699104-Celebrities-react-to-Corey-Haim-death-via-Twitter-Entertainment-Weekly.html");

newslist[2] = new Array("Black Market Butt Injections: New Cases in N.J.", "http://www.worldofnews.com/view-4699101-Black-Market-Butt-Injections-New-Cases-in-N-J.html");

newslist[3] = new Array("What Do You Think of Liz Cheney and Others Criticizing Lawyers Who Defend Terrorists", "http://www.worldofnews.com/view-4699100-What-Do-You-Think-of-Liz-Cheney-and-Others-Criticizing-Lawyers-Who-Defend-Terrorists.html");

newslist[4] = new Array("Dozens of Dems Said to Back Going &#39;Nuclear&#39; to Pass &#39;Public Option&#39; - FOXNews", "http://www.worldofnews.com/view-4699027-Dozens-of-Dems-Said-to-Back-Going-39-Nuclear-39-to-Pass-39-Public-Option-39-FOXNews.html");

var newstickerAnchor, newstickerSpan, newstickerCurrentNews;

function newsticker()
{
	newstickerAnchor = document.createElement('a');
	newstickerAnchor.target = '_blank';
	try{
		newstickerAnchor.style.backgroundColor = (typeof(ntBackgroundColor) == 'string')?ntBackgroundColor:'#ffff66';
	}
	catch(err){
		newstickerAnchor.style.backgroundColor = '#ffff66';
	}
	try{
		newstickerAnchor.style.color = (typeof(ntTextColor) == 'string')?ntTextColor:'#333333';
	}
	catch(err){
		newstickerAnchor.style.color = '#333333';
	}
	newstickerAnchor.style.fontSize = '12px';
	newstickerSpan = document.getElementById("mtxt");
	newstickerSpan.appendChild(newstickerAnchor);
	newstickerCurrentNews = 0;
	newstickerScrollNews();
}

function newstickerScrollNews(){
	newstickerAnchor.href = newslist[newstickerCurrentNews][1];
	newstickerAnchor.innerHTML = newslist[newstickerCurrentNews][0];
		
	// new item
	if (newstickerCurrentNews<newslist.length-1)
		newstickerCurrentNews++;
	else
		newstickerCurrentNews=0;
	setTimeout('newstickerScrollNews()',4000)
}
//  End -->

