var newslist=new Array();var cnt=0;			// current news itemvar curr = "";var i=-1;			// current letter being typed//Look out for events, competitions, promotions and more during national Enterprise Week from 12th November - 18th Novembernewslist[0]=new Array("Call 01462 452 951 for an appointment<a href=contact.html> or book online</a>","")//newslist[2]=new Array("the Business Improvement District and Croydon Business. <a href=news-detail.asp?NEWSID=49 class=alink>Click here for more</a> ","")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 = "<strong><font color='#ffffff' size='2'>LATEST NEWS ...&nbsp;&nbsp;"+curr+"_</font><strong>";    setTimeout('newsticker()',25)    return;  }  // new item  i = -1; curr = "";  if (cnt<newslist.length-1)    cnt++;  else    cnt=0;  setTimeout('newsticker()',5000)}//  End -->
