var howMany = 38
var quote = new Array(howMany+1)
quote[0]="My little dog:<br>A heart-beat at my feet.<br><span class=dogquoteAuthor> ~  Edith Wharton</span>"
quote[1]="The dog is a gentleman; <br>I hope to go to his heaven, not man's.<br><span class=dogquoteAuthor> ~  Mark Twain</span>"
quote[2]="Here, Gentlemen, a dog teaches us a lesson in humanity. <br><span class=dogquoteAuthor> ~ Napoleon Bonaparte</span>"
quote[3]="Heaven goes by favour.<br> If it went by merit, you would stay out and your dog would go in. <br><span class=dogquoteAuthor> ~ Mark Twain</span>"
quote[4]="If there is no heaven for dogs,<br> then I want to go where they go when I die. <br><span class=dogquoteAuthor> ~ Anonymous</span>"
quote[5]="My goal in life is to become as wonderful as my dog thinks I am.<br><span class=dogquoteAuthor> ~ Toby Green</span>"
quote[6]="No matter how little money and how few possessions you own, <br>having a dog makes you rich. <br><span class=dogquoteAuthor> ~ Louis Sabin</span>"
quote[7]="Dogs are our link to paradise. <br><span class=dogquoteAuthor> ~ Milan Kundera</span>"
quote[8]="Yesterday I was a dog. <br>Today I'm a dog. <br>Tomorrow I'll probably still be a dog. <br>Sigh! There's so little hope for advancement. <br><span class=dogquoteAuthor> ~ Snoopy</span>"
quote[9]="Heaven goes by favour. <br>If it went by merit, you would stay out and your dog would go in. <br><span class=dogquoteAuthor> ~ Mark Twain</span>"
quote[10]="He cannot be a gentleman which loveth not a dog. <br><span class=dogquoteAuthor> ~ John Northbrooke</span>"
quote[11]="One reason the dog has so many friends: <br>He wags his tail instead of his tongue. <br><span class=dogquoteAuthor> ~ Author Unknown</span>"
quote[12]="Whoever said you can't buy happiness forgot about puppies. <br><span class=dogquoteAuthor> ~ Gene Hill</span>"
quote[13]="He who sleeps half a day has won half a life. <br><span class=dogquoteAuthor> ~ Author Unknown</span>"
quote[14]="You enter into a certain amount of madness <br>when you marry a person with pets. <br><span class=dogquoteAuthor> ~ Nora Ephron</span>"
quote[15]="A dog has the soul of a philosopher. <br><span class=dogquoteAuthor> ~ Plato</span>"
quote[16]="Dogs are not our whole life, <br>but they make our lives whole. <br><span class=dogquoteAuthor> ~ Roger Caras</span>"
quote[17]="A dog is the only person on earth who loves you more than you love yourself. <br><span class=dogquoteAuthor> ~ Josh Billings</span>"
quote[18]="All knowledge, the totality of all questions and all answers, <br>is contained in the dog. <br><span class=dogquoteAuthor> ~ Franz Kafka</span>"
quote[19]="Animals are such agreeable friends<br> - they ask no questions; they pass no criticisms. <br><span class=dogquoteAuthor> ~ George Eliot</span>"
quote[20]="Dogs love company. <br>They place it first on their short list of needs. <br><span class=dogquoteAuthor> ~ J. R. Ackerley, <em>My Dog Tulip</em></span>"
quote[21]="He cannot be a gentleman which loveth not a dog. <br><span class=dogquoteAuthor> ~ John Northbrooke</span>"
quote[22]="Dogs are not our whole life,<br>but they make our lives whole. <br><span class=dogquoteAuthor> ~  Roger Caras</span>"
quote[23]="There is no psychiatrist in the world <br>like a puppy licking your face. <br><span class=dogquoteAuthor> ~  Bern Williams</span>"
quote[24]="From the dog's point of view,<br>his master is an elongated and abnormally cunning dog. <br><span class=dogquoteAuthor> ~  Mabel Louise Robinson</span>"
quote[25]="Dogs are miracles with paws.  <br><span class=dogquoteAuthor> ~ Author Unknown</span>"
quote[26]="Dogs' lives are too short.  Their only fault, really. <br><span class=dogquoteAuthor> ~  Agnes Sligh Turnbull</span>"
quote[27]="We long for an affection altogether ignorant of our faults. <br>Heaven has accorded this to us in the <br>uncritical canine attachment. <br><span class=dogquoteAuthor> ~  George Eliot</span>"
quote[28]="I think dogs are the most amazing creatures; they give unconditional love. <br>For me they are the role model for being alive. <br><span class=dogquoteAuthor> ~  Gilda Radner</span>"
quote[29]="Properly trained, a man can be dog's best friend. <br><span class=dogquoteAuthor> ~ Corey Ford</span>"
quote[30]="If you think dogs can't count, try putting three dog biscuits <br>in your pocket and then giving Fido only two of them. <br><span class=dogquoteAuthor> ~ Phil Pastoret</span>"
quote[31]="With the exception of women, there is nothing on earth <br>so agreeable or necessary to the comfort of man as the dog.<br><span class=dogquoteAuthor> ~ Edward Jesse, <em>Anecdote of Dogs</em></span>"
quote[32]="My goal in life is to be as good <br>of a person my dog already thinks I am. <br><span class=dogquoteAuthor> ~  Author Unknown</span>"
quote[33]="Did you ever notice when you blow in a dog's face<br> he gets mad at you?  But when you take him in a car <br>he sticks his head out the window. <br><span class=dogquoteAuthor> ~  Steve Bluestone</span>"
quote[34]="The dog is a gentleman; I hope to go to his heaven, not man's. <br><span class=dogquoteAuthor> ~  Mark Twain</span>"
quote[35]="The greatest love is a mother's; then a dog's; <br>then a sweetheart's.<br><span class=dogquoteAuthor> ~  Polish Proverb</span>"
quote[36]="One reason a dog is such a lovable creature <br>is his tail wags instead of his tongue. <br><span class=dogquoteAuthor> ~  Author Unknown</span>"
quote[37]="Whoever said you can't buy happiness forgot little puppies.  <br><span class=dogquoteAuthor> ~  Gene Hill</span>"
quote[38]="To sit with a dog on a hillside on a glorious afternoon <br>is to be back in Eden, <br>where doing nothing was not boring - it was peace.<br><span class=dogquoteAuthor> ~  Milan Kundera</span>"




function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)


