// Java Document

<!-- Begin
// news ticker function
function newsticker()
{
	// next character of current item
	if (i < newslist[cnt][0].length - 1)
	{
		i++;
		temp1 = newslist[cnt][0];	
		temp1 = temp1.split('');	
  		curr = curr+temp1[i];
		temp2 = newslist[cnt][1];	
  		mtxt.innerHTML = "<small><a href='"+temp2+"'><font color='#ffffff'>"+curr+"</small></font></a>";
  		setTimeout('newsticker()',20)
		return;
	}

	// new item
	i = -1; curr = "";
	if (cnt<newslist.length-1)
		cnt++;
	else
		cnt=0;
	setTimeout('newsticker()',4000)

}

		//  End -->