  <!-- Hide from old browsers
  
 <!-- "Pre Christmas sale now on...^" +
<!--"15% off everything...^" +
<!--"Take advantage by ordering now for Christmas... ^" +
<!--"we can hold an order for you at your request and dispatch on your preferred date... ^" + 

  

  message     
                
			=	
				"TopiaryShop.co.uk is a full member of Safebuy and Trust UK, supported and backed by the UK Government. ^" +
				"Feel safe in the knowledge that you are shopping with a trusted and respected name in the industry;- ^" +
				"We are the largest online Topiary Sales and Hire company in the U.K - Also members of the APL & HTA ^" +
				"Remember our hire & sales service covers the whole of the UK!!^" +
                "Also, catch us at the RSVP Events Show, Business Design Centre, London during March 2007..^" +
                "...and finally we have many heavily discounted 'EX HIRE' plants available for sale at our retail outlet.'^"
  scrollSpeed = 90
  lineDelay   = 2000

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

