message = "Energylinx, the UK’s No.1 Guide to Utility Prices…..Since 2000…^" +
"The only 100% impartial energy comparison, accredited by energywatch that lists every single tariff available to your home^" +
"If you wish to speak to an advisor for further information or would prefer a manual quote, call us on 0845 225 2840 today!^" +
"Compare today and save up to £200 on your gas and electricity bill^"
 
scrollSpeed = 40
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)
}

scrollText(0) 

