function viewQuotes() { 
  var ranQuote=new Array(40); 
    ranQuote[0]="Under the oak tree:<br />fallen leaves, acorns,<br />and seven squirrels."; 
    ranQuote[1]="Windy day:<br />fallen leaves and squirrels<br />everywhere."; 
    ranQuote[2]="The squirrel on the branch<br />looks down with one bright eye:<br />mouth full of acorn."; 
    ranQuote[3]="The squirrel on the branch:<br />just out of reach,<br />but no higher."; 
    ranQuote[4]="The squirrel complains:<br />so many nuts<br />and only one mouth!"; 
    ranQuote[5]="The squirrels<br />as nervous as the leaves<br />skittering in the wind"; 
    ranQuote[6]="So cold an autumn day&mdash;<br />even the squirrels<br />stay close to home."; 
    ranQuote[7]="Calm, wet morning&mdash;<br />I hear the squirrel's claws<br />on the elm-tree's bark."; 
    ranQuote[8]="Autumn:<br />bark-gray squirrels<br />climb the squirrel-gray tree."; 
    ranQuote[9]="Fall day:<br />nose-down where the squirrels were,<br />the dog follows ghosts."; 
    ranQuote[10]="Just like last year,<br />the coin-shaped bug in the sink&mdash;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;small change."; 
    ranQuote[11]="Spiders like asterisks cling to the ceiling&mdash;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;footnotes."; 
    ranQuote[12]="The male mosquito's wings hum&mdash;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the tiniest air raid drill."; 
    ranQuote[13]="Summer night&mdash;sweating,<br />I hear a mosquito hum,<br />\"They taste better hot.\""; 
    ranQuote[14]="The morning's first whistle<br />shocks the shivering air."; 
    ranQuote[15]="The trees have all half-lost their blooms,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;but I am pink with joy."; 
    ranQuote[16]="The wind's low sigh<br />as it eases across the<br />the roofless silo."; 
    ranQuote[17]="The breeze is so soft<br />that I listen<br />breathless"; 
    ranQuote[18]="July in Kansas<br />the back seat of a gray Ford<br />hot as fireworks"; 
    ranQuote[19]="One purple flower&mdash;<br />the wasp and the butterfly<br />take turns"; 
    ranQuote[20]="By the road,<br />a black cat walks<br />on dirty snow"; 
    ranQuote[21]="After the rain:<br />I inhale<br />air as warm and wet as breath."; 
    ranQuote[22]="Summer night:<br />the cicada rattles on<br />keeping no secrets."; 
    ranQuote[23]="Deep grass:<br />butterflies everywhere<br />bright as autumn leaves."; 
    ranQuote[24]="The lake thick with leaves and sluggish,<br />So the ducks sleep in the grass."; 
    ranQuote[25]="Did I see<br />the bird in the leafless tree<br />before I wrote it down?"; 
    ranQuote[26]="Calm, wet morning&mdash;<br />the sound of sparrow-wings<br />in the hedge"; 
    ranQuote[27]="A tap on the window:<br />a moth<br />on this cold autumn night."; 
    ranQuote[28]="The moonless sky<br />is sharp with wind:<br />winter, so close."; 
    ranQuote[29]="Snowy night&mdash;<br />even the cops<br />spin three-sixties."; 
    ranQuote[30]="Cold dawn&mdash;<br />the steam whistle<br />coughs a white cloud."; 
    ranQuote[31]="By the road,<br />a black cat walks<br />on dirty snow"; 
    ranQuote[32]="Winter:<br />two crows<br />picking at the empty corn field"; 
    ranQuote[33]="Winter night&mdash;<br />under the blankets<br />the cat purrs"; 
    ranQuote[34]="Winter dawn&mdash;<br />the chickadee's two notes:<br />\"I'm cold.\""; 
    ranQuote[35]="Snowy dawn&mdash;<br />The chickadee's two notes:<br />\"Feed me.\""; 
    ranQuote[36]="Snowy day:<br />the hungry squirrels<br />come close."; 
    ranQuote[37]="Black birds<br />on a telephone wire<br />spaced out like beads"; 
    ranQuote[38]="To kiss you was like finding last year's leaves<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;folded in a book"; 
    ranQuote[39]="sand fleas<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;like tiny agile rocks"; 
 
  var quote=Math.floor(Math.random()*40); 
  document.write("<div>"+ranQuote[quote]+"</div>"); 
} 

