// All you have to do is put another text in the variable message.
// Don't forget to break all lines with a ^
// When you do not place a ^ at the end of all the message, the
// message will not repeat
massage = "Welcome to the Big-D GYPSY M/C website^" +
	"Dallas Texas USA^" +
	"WHAT TIME IS IT?   PARTY TIME!" +                
	"Sour Pickles Of Society   ~   G.F.F.G.^" +                
	"Gypsy M/C and the Pickle Patch are registered ( TM ) Owned by Gypsy M/C International.^" +
	"Support Your Local GYPSY M/C^" +
	"GYPSY M/C    EST. 1932    G.F.F.G.^"

scrollSpeed = 25
lineDelay   = 1500
// Do not change the text below //
txt = ""
function scrollText(pos) {
	if (massage.charAt(pos) != '^') {
		txt = txt + massage.charAt(pos)
		status = txt
		pauze = scrollSpeed
	} else {
		pauze = lineDelay
		txt = ""
		if (pos == massage.length-1) pos = -1
	}
	pos++
	setTimeout("scrollText('"+pos+"')",pauze)
}
scrollText(0)


// keep em from lifting our images, sort of
am ="GYPSY M/C & the Pickle Patch are registered TM. Protected by law & GYPSY M/C!";
bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"
function nrc(e) {
	if (bNS && e.which > 1){
		alert(am)
		return false;
	} else if (bIE && (event.button >1)) {
		alert(am)
		return false;
	}
}
document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;
