var statBarMsg = "                                                  " +
"                                                                   " +
"                                                                   " +
"                                                                   " +
"Take this chalace...      all that was known by humankind...       " +
"... the ancient cup... lost but now found.                         " +
"The Holy Grail...                                                  " +
"... the key...     to immortality.                                 " +
"Take this...                                                       " +
"... and DRINK.                                                     ";

function startStatusScroller() {
    window.status = statBarMsg;
    statBarMsg = statBarMsg.substring (1, statBarMsg.length) + statBarMsg.substring(0, 1)
    setTimeout ("startStatusScroller()", 200);
}

function popUpQuote(quote) {
	var currentQuote = document.getElementById('quote').innerHTML;
	document.getElementById('quote').innerHTML = currentQuote + quote;
}

function wait(time) {
    setTimeout("startStatusScroller()", time * 1000);
    setTimeout ("popUpQuote('Drop Out, ')", 30 * 1000);
    setTimeout ("popUpQuote('Turn On, ')", 60 * 1000);
    setTimeout ("popUpQuote('<b>Tune In.</b>')", 90 * 1000);
}
// Start running.
window.onLoad = wait(10);
