var word=new Array();
word[0]='<li>jaaaam \\JAAAAM\\ (interjection)</li><p> Let`s go!; Uh oh!'
word[1]='<li>cised \\SYSD\\ (adjective)</li><p> also: siced, seised; to get unnecessarily pressed or necessarily excited, as in "get cised"'
word[2]='<li>B2K \\BEE-TOO-KAY\\ (verb)</li><p> does not refer to the sadly defunct R&B supergroup, but rather the idea of buzzkilling in the new millenium; see also "Y2Gay"'
word[3]='<li>mony \\MOE-NEE\\ (adjective)</li><p> also: money, munny, munay; something that is very nice indeed; describing one who is on top of their game'
word[4]='<li>funnytimes \\FUN-NEE-TYMZ\\ (noun, adjective) </li><p> also: funtimes; one who is, or the act of, having just a little too much fun for one`s own good'
word[5]='<li>strugglicious \\STRUH-GUH-LISH-ISS\\ (adjective) </li><p> also: struggles; having a difficult time in general'
word[6]='<li>double tight \\UH-DUH-BUL-TYTE\\ (adjective) </li><p> similar to tight (very good, awesome) but twice as much so'
word[7]='<li>hurting \\HER-TING\\ (adjective, noun) </li><p> something or someone who is not so good or having a rough time'
word[8]='<li>Burnin` Vernon McCracken \\BUR-NIN-VUR-NIN-MICK-KRAK-KEN\\ (noun) </li><p> refers to a lighter whose flame is set way too high'
word[9]='<li>vomitosis \\VA-MA-TOE-SIS\\ (noun) </li><p> the act of vomiting'
word[10]='<li>word \\WURD\\ (interjection) </li><p> 1: catch-all term that works in any situation where you don`t really have anything to say; a simple statement of agreement'
word[11]='<li>debacle \\DA-BOCK-UL\\ (noun) </li><p> a completely ridiculous situation; see also "showtimes"'
word[12]='<li>there was one? \\THAYR-WUZ-WUN\\ (interjection) </li><p> 1: response to a statement that one finds confusing, preposterous, or displeasurable; originates from the movie "Stripes"'
word[13]='<li>I think that`s the tops \\I-THINK-THATZ-THUH-TOPZ\\ (interjection) </li><p> that`s just great or wonderful; can also be shortened to "the tops" (noun); originates from "Seinfeld", when Mel Torme said it to Kramer'
word[14]='<li>Seinfest \\SINE-FEST\\ (noun) </li><p> refers to a marathon watching of the popular syndicated television show "Seinfeld"'
word[15]='<li>showtimes \\SHO-TYMZ\\ (noun) </li><p> an absolutely ridiculous situation; can be shortened to "show"; see also "debacle"'
word[16]='<li>The Men`s Club \\THUH-MENZ-KLUB\\ (noun) </li><p> refers specifically to 8717 37th Ave.; refers generally to anything encompassing that house`s inhabitants and their experiences'
word[17]='<li>make it like salad \\MAYK-IT-LYKE-SAL-AHD\\ (verb) </li><p> the act of mixing liquid heat in with the football team`s jockstraps, as in "Revenge of the Nerds"'
word[18]='<li>gank \\GAINK\\ (verb) </li><p> to steal or take while someone isn`t looking'
word[19]='<li>acquerdo \\UH-KWARE-DOH\\ (adjective, noun)<li><p> awkward; awkwardness'

function daysElapsed(date2,date1)
{
  return Math.floor((((((date2 - date1)/1000)/60)/60)/24));
}
var today=new Date();
var start=new Date(2006, 1, 6);  //yr, mnth-1, date
var word_num = daysElapsed(today, start);

while (word_num > word.length)
  word_num = word_num - word.length;
  
  document.write ("<ul>" + word[word_num] + "</ul>");