
	 	// - Pick up a book instead of stealing other peoples code - JS	
        // msg to show
        var msg = "Welcome  to   Paralux     -     Juan and Friends are Worlds away .. have fun ";
                   var spacer = " ....   *****   ....   *****   ... ";
                   // current message position
                   var pos = 0;
                   //flag to control message
      function ScrollMessage() {
      window.status = msg.substring(pos, msg.length) + spacer +
                    msg.substring(0, pos);
                      pos++;
                      if (pos > msg.length) pos = 0;
				   // set timeout for next update
                      window.setTimeout("ScrollMessage()",200);
                    }
 