<!-- 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("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 639007</font></b><br>Abington","")
newslist[1]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 706007</font></b><br>Hunsbury","")
newslist[2]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 784007</font></b><br>Weston Favell","")
newslist[3]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 722007</font></b><br>Kingsthorpe","")
newslist[4]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 880077</font></b><br>Brixworth","")
newslist[5]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 589007</font></b><br>Duston Village","")
newslist[6]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 432007</font></b><br>Northampton (Grange Park)","")
newslist[7]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 721007</font></b><br>Abington East","")
newslist[8]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 644700</font></b><br>Parklands","")
newslist[9]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 233499</font></b><br>Northampton Town & Country","")
newslist[10]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 814500</font></b><br>New Homes Northampton","")
newslist[11]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 814300</font></b><br>Northampton Sales Control","")
newslist[12]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 814400</font></b><br>Home Conveyancing","")
newslist[13]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01604 766007</font></b><br>Central Head Office","")
newslist[14]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 675007</font></b><br>Milton Keynes","")
newslist[15]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 670007</font></b><br>Walnut Tree","")
newslist[16]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 522007</font></b><br>Westcroft","")
newslist[17]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 749007</font></b><br>Shenley Church End","")
newslist[18]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 374007</font></b><br>Bletchley","")
newslist[19]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 647007</font></b><br>West Bletchley","")
newslist[20]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 305007</font></b><br>Stony Stratford","")
newslist[21]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 325707</font></b><br>Milton Keynes Town & Country","")
newslist[22]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 325720</font></b><br>Milton Keynes Sales Control","")
newslist[23]=new Array("<font style='line-height:22px; font-size:15pt; color:#006600'>01908 325700</font></b><br>Milton Keynes Head Office","")




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='http://www.oriordanbond.co.uk/about_us/contact_us.htm'><font style='font-family:tahoma,verdana; font-size:8pt; color:#000000'><b>"+curr+"</b></font></a>";
    setTimeout('newsticker()',10)
    return;
  }
  // new item
  i = -1; curr = "";
  if (cnt<newslist.length-1)
    cnt++;
  else
    cnt=0;
  setTimeout('newsticker()',4000)
}
//  End -->