var s;

var scrolltext = "       • • •  Special Halloween performance at Le Chalet, Glendale Oct. 29th, 2011.  Call 480-652-5441 for information and tickets    ".concat("   • • •  Special Halloween performance at Le Chalet, Glendale Oct. 29th, 2011.  Call 480-652-5441 for information and tickets");
function init(){
	s = browserCheck();
        if( s == 0 )    NN_scrollMasquee();
        if( s >= 4 )    IE_scrollMasquee();
	return 0;
}
function browserCheck(){
        var browserName = navigator.appName;
        var browserVersion = parseInt( navigator.appVersion );
        var browser = 0;
        if( browserName == "Netscape" ){
                if( browserVersion >= 5 ) browser = 6;
                else browser = 0;
        }
        if( browserName == "Microsoft Internet Explorer" ){
                if( browserVersion >= 5 ) browser = 5;
                else browser = 4;
        }
        if( browserName == "MSIE" ){
                if( browserVersion >= 5 ) browser = 5;
                else browser = 4;
        }
return ( browser );
}

function NN_scrollMasquee() {
        scrolltext = scrolltext.substring(2,scrolltext.length) + scrolltext.substring(0,2);
        document.scrollbox.scrollbox_text.value = scrolltext;
        setTimeout("NN_scrollMasquee()",100);
}
function IE_scrollMasquee() {
        scrolltext = scrolltext.substring(1,scrolltext.length) + scrolltext.substring(0,1);
        document.scrollbox.scrollbox_text.value = scrolltext;
        setTimeout("IE_scrollMasquee()",100);
}


