<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var core = 0
var currentdate = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(20)
quote[0] = "Kids: they dance before they learn there is anything that isn't music."
quote[1] = "There is a bit of insanity in dancing that does everybody a great deal of good."
quote[2] = "We're fools whether we dance or not, so we might as well dance."
quote[3] = "Nobody cares if you can't dance well.  Just get up and dance."
quote[4] = "Dancing is like dreaming with your feet!"
quote[5] = "You can dance anywhere, even if only in your heart."
quote[6] = "There are short-cuts to happiness, and dancing is one of them."
quote[7] = "It takes an athlete to dance, but an artist to be a dancer."
quote[8] = "Dance is a song of the body.  Either of joy or pain."
quote[9] = "Anyone who says sunshine brings happiness has never danced in the rain."
quote[10] = "Please send me your last pair of shoes, worn out with dancing as you mentioned in your letter, so that I might have something to press against my heart."
quote[11] = "I would believe only in a God that knows how to dance."
quote[12] = "Never trust spiritual leader who cannot dance."
quote[13] = "On with the dance! let joy be unconfined; No sleep till morn, when Youth and Pleasure meet To chase the glowing hours with flying feet."
quote[14] = "The truest expression of a people is in its dance and in its music.  Bodies never lie."
quote[15] = "Dancing faces you towards Heaven, whichever direction you turn."
quote[16] = "Dancers are the messengers of the gods."
quote[17] = "Remember, Ginger Rogers did everything Fred Astaire did, but backwards and in high heels."
quote[18] = "I don't want people who want to dance, I want people who have to dance."
quote[19] = "Dance first.  Think later.  It's the natural order."



author = new StringArray(20)
author[0] = "William Stafford"
author[1] = "Edwin Denby"
author[2] = "Japanese Proverb"
author[3] = "Dave Barry"
author[4] = "Constanze"
author[5] = "Author Unknown"
author[6] = "Vicki Baum"
author[7] = "Shanna LaFleur"
author[8] = "Martha Graham"
author[9] = "Author Unknown"
author[10] = "Johann Wolfgang von Goethe"
author[11] = "Friedrich Nietzsche"
author[12] = "Mr. Miyagi, The Next Karate Kid, 1994"
author[13] = "George Gordon, Lord Byron, Childe Harold's Pilgrimage"
author[14] = "Agnes de Mille"
author[15] = "Terri Guillemets"
author[16] = "Martha Graham"
author[17] = "Faith Whittlesey"
author[18] = "George Balanchine"
author[19] = "Samuel Beckett"



var ran = 60/quote.length

currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore

var thequote = quote[core]
var theauthor = author[core]
var theindent = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
var thebreak = ' - '
var theq = '"'
var theend = '.'

document.write(theq + thequote + theq + '<p>' + theindent + thebreak + theauthor + theend)

//-->

