﻿/* Display text messages */

/* Global variables */
var textLine = 0;
var returnLine = "";
var gs_textLines = new Array(5);
var first_Time = 0;

function scroll()
{
    /* Only run once to fill the array */
    if (!first_Time)
    {
        /* Fill the array with text messages */
        gs_textLines[0] = "<span style=\"color:#000000\">Welcome to the Kuk Sool Won of Norwich School</span>";
        gs_textLines[1] = "<span style=\"color:#000000\">Classes available 6 days a week - Little Dragons - Classes 3 1/2 to 6 years old</span>";
        gs_textLines[2] = "<span style=\"color:#000000\">Classes available 6 days a week - Children's Classes 6 - 12 years old</span>";
        gs_textLines[3] = "<span style=\"color:#000000\">Classes available 6 days a week - Adult Classes 12+ years</span>";
        gs_textLines[4] = "<span style=\"color:#000000\">For further information contact John Ives at johnives@ntlworld.com or Tel: 01603 788838</span>";
        first_Time = 1;
    }
    
    /* retrieve the current text message */
    returnLine = gs_textLines[textLine];

    /* Debug */
    //alert(textLine);
    
    if (textLine < 4)
    {
        textLine++;
    }
    else
    {
        textLine = 1; 
    }
    
    /* Retrun the text message */
    document.getElementById("scrollText").innerHTML = returnLine;    
    setTimeout("scroll();", 10000);
}
