/* scrolling message

msg = "Welcome to Riesegeist";
msg = "....                                           ...." + msg;pos = 0;
function ScrollMessage() {
	window.status = msg.substring(pos, msg.length) + msg.substring(0, pos);
	pos++;
	if (pos > msg.length) pos = 0;
	window.setTimeout("ScrollMessage()",100);
}
ScrollMessage();
*/


