var newslist=new Array();
var cnt=0;          // current news item
var curr = "";
var i=-1;           // current letter being typed

newslist[0]=new Array("","#")
newslist[1]=new Array("''All the Candidates we have had have been of the highest calibre''","#")
newslist[2]=new Array("''Simply the best general office recruitment service available in Wimbledon!''","#")
newslist[3]=new Array("''The standard of temps is always very high what ever the time frame''","#")
newslist[4]=new Array("''Fast, efficient and friendly, with rates so competitive no one else can touch them!''","#")
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='pagenotbuilt.htm' style='text-decoration:none; color: #00694B; font-family: Bradley Hand ITC; font-size: 14pt; line-height: 12pt;'><b>"+curr+"_</b></a>";
    setTimeout('newsticker()',100)
    return;
  }
  // new item
  i = -1; curr = "";
  if (cnt<newslist.length-1)
    cnt++;
  else
    cnt=0;
  setTimeout('newsticker()',3000)
}
