function random(limit) {
     today = new Date();
     return(today.getSeconds() % limit);
   }

   function tagline() {
     tagLines = new Array(19);
     tagLines[0] = "<img src='/images/bugs/poet1.gif' border=0 width=199 height=290>";
     tagLines[1] = "<img src='/images/bugs/poet2.gif' border=0 width=199 height=290>";
     tagLines[2] = "<img src='/images/bugs/poet3.gif' border=0 width=199 height=290>";
     tagLines[3] = "<img src='/images/bugs/poet17.gif' border=0 width=199 height=290>";
     tagLines[4] = "<img src='/images/bugs/poet5.gif' border=0 width=199 height=290>";
     tagLines[5] = "<img src='/images/bugs/poet6.gif' border=0 width=199 height=290>";
     tagLines[6] = "<img src='/images/bugs/poet7.gif' border=0 width=199 height=290>";
     tagLines[7] = "<img src='/images/bugs/poet8.gif' border=0 width=199 height=290>";
     tagLines[8] = "<img src='/images/bugs/poet9.gif' border=0 width=199 height=290>";
     tagLines[9] = "<img src='/images/bugs/poet10.gif' border=0 width=199 height=290>";
     tagLines[10] = "<img src='/images/bugs/poet11.gif' border=0 width=199 height=290>";
   tagLines[11] = "<img src='/images/bugs/poet12.gif' border=0 width=199 height=290>";
   tagLines[12] = "<img src='/images/bugs/poet13.gif' border=0 width=199 height=290>";
 tagLines[13] = "<img src='/images/bugs/poet14.gif' border=0 width=199 height=290>";
 tagLines[14] = "<img src='/images/bugs/poet15.gif' border=0 width=199 height=290>";
 tagLines[15] = "<img src='/images/bugs/poet16.gif' border=0 width=199 height=290>";
 tagLines[16] = "<img src='/images/bugs/poet19.gif' border=0 width=199 height=290>";
 tagLines[17] = "<img src='/images/bugs/poet30.gif' border=0 width=199 height=290>";
 tagLines[18] = "<img src='/images/bugs/poet31.gif' border=0 width=199 height=290>";
     document.write(tagLines[random(19)]);
   }

