	/*   You will have to play with the positioning, width and height of the div.  The width will dependon how long your message is.  If you want more of a pause between messages then add more spaces to the end of the messages.              Enter the messages you want displayed here*/var msg=new Array()msg[0]="    Welcome to Fortis Properties Website! Providing...                 "msg[1]="    value for money services to house buyers and sellers.                  "msg[2]="    Fortis Properties, Cardiff                           "msg[3]="    123a Station road, Llandaff North...                 "msg[4]="    Cardiff, CF14 2FE                         "msg[5]="    Tel: 02920 561111                         "// This sets the speed at which the letters of the message are displayedspeed=100a=0temp=""arrlen=msg.lengthi=0function Scrollbox(){if(i>=arrlen){i=0}len=msg[i].lengthtemp=temp+msg[i].substr(a,1)/* If you want a different font and color then change it here in Both places */if(document.getElementById){elm=document.getElementById("scrolltext")elm.innerHTML="<FONT size='2' face='Arial' color='#999999'>"+temp+"</FONT>"}else{if(document.layers){document.scrolltext.document.write("<FONT size='2' face='Arial' color='#999999 weight='normal>"+temp+"</FONT>")document.scrolltext.document.close()}}a++if(a<len){counts=setTimeout("Scrollbox()",speed)}else{a=0if(document.getElementById){elm.innerHTML=" "}else{document.scrolltext.document.write(" ")document.scrolltext.document.close()}temp=""i++counts=setTimeout("Scrollbox()",speed)}}