<!--
var msg=new Array()
msg[0]="Think!!"
msg[1]="Granites - Polished and Flamed Granites and Monuments."
msg[2]="Rough Granites - Dimensional Blocks, Granite Cobble Stones, Artifacts, Pebbles / Tumbled Cobbles."
msg[3]="Marbles - Indian and Italian Marbles."
msg[4]="South Indian Slates."
msg[5]="All at One-Stop-Shop - StoneShoppee.com"
// This sets the speed at which the letters of the message are displayed

speed=150
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 face='verdana' size='-1' color='#205790'><b>"+temp+"</b></FONT>"
                }
                else
                {
                if(document.layers)
                {
document.scrolltext.document.write("<FONT face='verdana' size='-1' color='#205790' weight='bold'><b>"+temp+"</b></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)
	}
}
//-->