<!--  

	function makeArray(n)
	{
        this.length = n;
        for (i=0; i<n; i++) this[i]="";
	}
	stcnt = 16;
	msg = "  Welcome to Sussex Ventilation! ";
	wmsg = new makeArray(32);
        wmsg[0]=msg;
        blnk ="                                      ";
        for (i=1; i<32; i++)
        {
                b = blnk.substring(0,i);
                for (j=0; j<msg.length; j++)
		wmsg[i]=wmsg[i]+msg.charAt(j)+b;
        }
	function wiper()
	{
        if (stcnt > -1) str = wmsg[stcnt]; else str = wmsg[0];
        if (stcnt-- < -40) stcnt=31;
        window.status = str;
        timeID = window.setTimeout("wiper()",100);        
	}
//-->