message =
	"Welcome to LunarSky Productions, Inc. - LunarSky.com ^" +
	"We specialize in Business-Class Web Hosting. ^" +		
	"Business-class web hosting starting at $4.99 per month! ^" +
	"Domain name registration for $14.99 per year! ^" +
	"Insta-Site packages starting at $99.99 per year! ^" +
	"Call us toll free at 1.866.4LUNARSKY for sales and support. ^" +
	"^";
scrollSpeed = 20;
lineDelay = 2000;
txt = "";
function scrollText(pos) {
	if (message.charAt(pos) != "^") {
		txt = txt + message.charAt(pos);
		window.status = txt;
		document.preloadscrform.preloadscr.value = txt;
		pauze = scrollSpeed;
	} else {
		pauze = lineDelay;
		txt = "";
		if (pos == message.length - 1)
			pos = -1;
	}
	pos++;
	setTimeout("scrollText(\'"+pos+"\')",pauze);
}
scrollText(0);

