<!--
message = "Welcome to 'No Light without Shadow'^" +
          "The Star Wars RPG Campaign and Resource Site^" +
	  "Please take the time to rate this site or return feedback to the webmaster^" +
          "Player resources includes: skills, feats, gear, starships and more^" +
	  "Games master resources includes: campaign matterial, systems, allies & adversaries with numerious plot hooks^" +
          "Site / community includes awards and links to other Star Wars sites across the net^" +
          "^"
scrollSpeed = 35
lineDelay   = 3000
txt         = ""

function scrollText(pos) {
	if (message.charAt(pos) != '^') {
	txt    = txt + message.charAt(pos)
	status = txt
	pauze  = scrollSpeed
	}
	else {
	pauze = lineDelay
	txt   = ""
	if (pos == message.length-1) pos = -1
	}
	pos++
	setTimeout("scrollText('"+pos+"')",pauze)
	}
	scrollText(0)
//-->