<!-- 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("[-NEPA-] CSS - Gun Mod Server - ","#")
newslist[1]=new Array("CS:S - ","#")
newslist[2]=new Array("Fragsponsor 2142 Server - 32 Slot - 72.232.187.104:17567","#")
newslist[3]=new Array("HL2 Deathmatch - ","#")
newslist[4]=new Array("*NEW Fourms* - Comming SOON!!","#")
newslist[5]=new Array("Join our Vent - VOICE-IL1.BRANZONE.COM - 3919","#")
newslist[6]=new Array("**LOOK** We R Recruiting!","#")
newslist[7]=new Array("COD4 Server - :28960","#")

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+"' style='text-decoration: none; font-family: Verdana; font-size:12px; color: #F5F72A;'><font color='#F5F72A' style='text-decoration: none; font-weight: bold;'>"+curr+"_</small></font></a>";
  		setTimeout('newsticker()',10)
		return;
	}

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

}

		//  End -->