message = "Energylinx, the UK's No. 1 Guide to Utility Prices ... since 2000...^" +
"The 100% impartial energy comparison, accredited by Consumer Focus that lists every single tariff available to your home.^" +
"If you wish to speak with an advisor for further information or would prefer a manual quote please call us on 0800 849 7077!^" +
"Compare today and save up to £276 on your gas and electricity bills.^"
 
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) 
