document.write("<span class=darktext>Suggestion? Testing Sig? Need help? Got a request?");
document.write("<br><font color=#C4AA80>Careful, Lunaris lurks here.</font>");

now = new Date();
seed = now.getTime();
QUOTEScount = 7;
QUOTE = new Array(QUOTEScount);
var SHOWING;

QUOTE[0] = 'Lunaris worshippers form a line here';
QUOTE[1] = 'All posts must begin with "|)34r j00r l33tN355"';
QUOTE[2] = 'Abandon all hope ye who enter here';
QUOTE[3] = 'Rar! Growl! ... and so on and so forth...';
QUOTE[4] = '"You shall know the truth, and the truth shall make you mad." -Aldous Huxley';
QUOTE[5] = '"Power is the ultimate aphrodisiac."';
QUOTE[6] = 'Warning! Sudden enlightenment may cause damage to monitor and skull.'; 
QUOTE[7] = 'OMG I ARE REELY LIEKING TEH PIE!!!';

function random(num)
   {
   ia=9301;
   ic=49297;
   im=233280;
   seed = (seed*ia+ic) % im;
   return Math.ceil( (seed/(im*1.0)) * num);
   }

function Show_Rnd()
 {
 SHOWING = random(QUOTEScount) - 1;

 document.write("<br><font color=#CCBBAA>",QUOTE[SHOWING],"</font>");
}

Show_Rnd();
