quips = new Array();
quips[quips.length] = "Oh, what a tangled www we weave...";
quips[quips.length] = "\"We've all heard that infinite monkeys banging on infinite typewriters will eventually reproduce the works of Shakespeare. Now, thanks to the Internet, we know this is not true.\" -Robert Wilensky";
quips[quips.length] = "\"I'd rather be rich than stupid.\" -Obligatory Deep Thought by Jack Handey";
quips[quips.length] = "The revolution will not be televised due to graphic violent content and adult situations.";

today      = new Date();
year       = today.getYear();
date_Jan1  = new Date(year,0,1);
julianDate = Math.floor((today.getTime()-date_Jan1.getTime())/86400000);
selection  = julianDate % quips.length;

document.write("<html>");
document.write("<head>");
document.write("<title>michaelgrant.net</title>");
document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"/style.css\">");
document.write("<link rel=\"icon\" href=\"http://www.michaelgrant.net/favicon.ico\" type=\"image/ico\">");
document.write("<link rel=\"SHORTCUT ICON\" href=\"http://www.michaelgrant.net/favicon.ico\">");
document.write("</head>");
document.write("<body bgcolor=\"#000000\" text=\"#00c000\" link=\"#a0ff00\" vlink=\"#a0ff00\" alink=\"#a0ff00\">");
document.write("<center>");
document.write("<span id=\"title\" onClick=\"window.location.replace('/')\" style=\"cursor: hand\">");
document.write("<table width=750 height=70 cellpadding=0 cellspacing=0 border=0>");
document.write(" <tr>");
document.write("  <td valign=bottom align=right width=100% background=\"/images/logo.gif\">");
document.write("   <table width=40% cellspacing=0 cellpadding=0 border=0 background=\"\">");
document.write("    <tr>");
document.write("     <td align=right>");
document.write("      <font color=white face=arial style=\"font-size: 9px\">");
document.write(quips[selection]);
document.write("      </font>");
document.write("     </td>");
document.write("    </tr>");
document.write("   </table>");
document.write("  </td>");
document.write(" </tr>");
document.write("</table>");
document.write("</span>");
document.write("<p>");
document.write("<table width=750 cellpadding=0 cellspacing=0 border=0>");
document.write(" <tr>");
document.write("  <td>");
document.write("   <center>");
document.write("   <nobr><b>");
document.write("   <a href=\"http://pictures.michaelgrant.net\">(Pictures)</a> -");
document.write("   <a href=\"/faq.html\">(FAQ)</a> -");
document.write("   (Games) -");
document.write("   <a href=\"/polls\">(Polls)</a> -");
document.write("   <a href=\"/features\">(Features)</a>");
document.write("   </b></nobr>");
document.write("   </center>");
document.write("   <font size=-1>");
document.write("   <p>");
