// JavaScript Document
<!-- hide this script from non-javascript-enabled browsers

var strStatusText = "For further details or quotation please telephone or email.....";
var intScrollOut = 0;
var intScrollIn = 0;

function TickerText()
{
  window.status = strStatusText.substring(0, intScrollIn);

 if(intScrollOut == 1)
 {
    intScrollIn--;

    if(intScrollIn == 0)
      intScrollOut = 0;
  }
  else
  {
    intScrollIn++;
    
    if(intScrollIn == strStatusText.length)
      intScrollOut = 1;
  }

  window.status = strStatusText.substring(0, intScrollIn) + "|";

  if(intScrollIn == strStatusText.length || intScrollIn == 0)
    window.setTimeout("TickerText()", 5000);
  else
    window.setTimeout("TickerText()", 50);
}

TickerText();
// stop hiding -->