<!-- 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("India&#39;s tribes in land fight with business", "http://www.worldofnews.com/view-4698838-India-39-s-tribes-in-land-fight-with-business.html");

newslist[1] = new Array("I&#39;m a big fan of Shah Rukh: Akon", "http://www.worldofnews.com/view-4698823-I-39-m-a-big-fan-of-Shah-Rukh-Akon.html");

newslist[2] = new Array("Superhero Shah Rukh hopes India accepts Ra.One", "http://www.worldofnews.com/view-4698811-Superhero-Shah-Rukh-hopes-India-accepts-Ra-One.html");

newslist[3] = new Array("SC admits Heinz plea on Nycil tax issue", "http://www.worldofnews.com/view-4698795-SC-admits-Heinz-plea-on-Nycil-tax-issue.html");

newslist[4] = new Array("We arent here to compete with local players", "http://www.worldofnews.com/view-4698790-We-arent-here-to-compete-with-local-players.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 -->

