  <!-- Hide from old browsers
  
 <!-- "Welcome to caboodleMe. A fantastic new service designed to take care of you ^" +
<!--"Consider us your personal assistant, we can save you time, money and hassle ^" +
<!--"From help moving home to finding the right car or throwing a party we can help ^" +
<!--"If you just need a trusted trades person, we can do that to! ^" +
<!--"We love to talk, so please call us on 01992 581593 ^" + 

  

  message     
                
			=	
				"Welcome to caboodleMe. A fantastic new service designed to take care of you ^" +
				"Consider us your personal assistant, we can save you time, money and hassle ^" +
                                "From help moving home to finding the right car or throwing a party we can help ^" +
                                "If you just need a trusted trades person, we can do that to! ^" +
                                "We love to talk, so please call us on 01992 581593 ^"
  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)
