   var quote = new Array(7)
   var atrib = new Array(7)
   quote[0]="I used to be afraid of cats. Now they are my friends. I just wish my mom could have come too."
   atrib[0]="Hanta mouse</b>, 8 years old, newest resident."
   quote[1]="There's a way out of any cage, and I'll find it."
   atrib[1]="Bo</b>, cat, Resistance."
   quote[2]="I should have died. This life is a gift. I can accept it or refuse it, but I don't feel I can complain."
   atrib[2]="Purdy</b>,  cat, Crafter, artist."
   quote[3]="Escape is an art that I pursue, rather than a goal I expect to achieve."
   atrib[3]="Old Dog</b>, founder, Speaker for the Resistance"
   quote[4]="Our beloved Keeper gave us better minds, better bodies, a longer life, provides us with everything we need, and loves us every one."
   atrib[4]="Old Gerbil</b>, founder"
   quote[5]="I am not a pet! I am a free animal! I will not be kept, trapped, caged, trained, retrained, bribed, or broken!"
   atrib[5]="Angry Sheila</b>, cat, legend"
   quote[6]="Who is this keeper? What does he want with us? Why did he build all this?"
   atrib[6]="Everybody</b>, sooner or later"
   day = new Date()
   which = day.getSeconds() % 7
   document.write("<span id='blurb'>")
   document.write(quote[which])
   document.write("</span> <br /><span id='attrib'> - <b>")
   document.write(atrib[which] + "</span>")
