var numquotes = 4;
  
        var quotes = new Array(numquotes);
        quotes[0]="ar en be";
        quotes[1]="see you, space cowboy. . .";
 	quotes[2]="name a price on what's sacred";
        quotes[3]="me and my stupid happiness";
        var rand = Math.floor(Math.random()*numquotes);
        document.write("<center><font size=\"-3\">" + quotes[rand] +
                       "</font></center>");



