//This is a random quote generator by HotCheese
//it might owrk i dunno
//do what you will with it
Quotes = new Array(1);
numQuotes = 0;

function AddQuote(quote) {
		 Quotes[numQuotes++] = quote;
}

function Random() {
  var now=new Date();
  var num=(now.getSeconds()) % numQuotes;

  document.write("HCI: " + Quotes[num]);
}
AddQuote("WTF?!?! I'm l33t");
AddQuote("I told you I was hardcore.");
AddQuote("...");
AddQuote("The more I play with it the more I like it.");
AddQuote("n00bs");
AddQuote("OMGhI2u");
AddQuote("Behold the power of cheese.");
AddQuote("STFU!");
AddQuote("Smells like fish.");
AddQuote("You a dirty cop aint ya?");