// 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("Team: Neues Forum eröffnet! - FUN ECKE - . . . Have Fun ;-)","forum-12.htm")               
newslist[1]=new Array("Admin: Änderungen der Datenschutzinformationen ","thema-73.htm")
newslist[2]=new Array("Thalia: Neue Unterforen. Ich eröffne diesen Thread, um unser Forum etwas . . .","thema-72.htm")
newslist[3]=new Array("Lisimaus: Mein Traummann. Wie sieht Dein Traummann aus?","thema-65.htm")


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 = "<a href='"+temp2+"'><font color='#FF0000'>"+curr+"_</font></a>";
  		setTimeout('newsticker()',18)
		return;
	}

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

}

