<!-- 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("Art of the matter out in the open", "http://www.worldofnews.com/view-4733636-Art-of-the-matter-out-in-the-open.html");

newslist[1] = new Array("RIL, IMG join hands to develop sports in India", "http://www.worldofnews.com/view-4733567-RIL-IMG-join-hands-to-develop-sports-in-India.html");

newslist[2] = new Array("&#39;Indians most open about shifting jobs&#39;", "http://www.worldofnews.com/view-4733566-39-Indians-most-open-about-shifting-jobs-39.html");

newslist[3] = new Array("MS, Google slug it out in local languages", "http://www.worldofnews.com/view-4733563-MS-Google-slug-it-out-in-local-languages.html");

newslist[4] = new Array("87.37 million new jobs likely by 2015: Assocham", "http://www.worldofnews.com/view-4733559-87-37-million-new-jobs-likely-by-2015-Assocham.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 -->

