<!--
function quotelist(quote, author) {
    this.quote = quote;
    this.author = author;
}

var rnd_quote = new Array ( );
rnd_quote[rnd_quote.length] = new quotelist("The butterfly counts not months but moments, and has time enough.","Rabindranath Tagore");
rnd_quote[rnd_quote.length] = new quotelist("May the wings of the butterfly kiss the sun  And find your shoulder to light on,  To bring you luck, happiness and riches  Today, tomorrow and beyond.","Irish Blessing");
rnd_quote[rnd_quote.length] = new quotelist("Butterflies are self propelled flowers.","R.H. Heinlein");
rnd_quote[rnd_quote.length] = new quotelist("The caterpillar does all the work but the butterfly gets all the publicity.","Attributed to George Carlin");
rnd_quote[rnd_quote.length] = new quotelist("The fluttering of a butterfly's wings can effect climate changes on the other side of the planet.","Paul Erlich");
rnd_quote[rnd_quote.length] = new quotelist("Just like the butterfly, I too will awaken in my own time.","Deborah Chaskin");
rnd_quote[rnd_quote.length] = new quotelist("I do not know whether I was then a man dreaming I was a butterfly, or whether I am now a butterfly dreaming I am a man.","Chuang Tzu");
rnd_quote[rnd_quote.length] = new quotelist("We delight in the beauty of the butterfly, but rarely admit the changes it has gone through to achieve that beauty.","Maya Angelou");
rnd_quote[rnd_quote.length] = new quotelist("We are like butterflies who flutter for a day and think it is forever.","Carl Sagan");
rnd_quote[rnd_quote.length] = new quotelist("I only ask to be free.<br />The butterflies are free.","Charles Dickens");


var i = Math.round(Math.random()*(rnd_quote.length - 1))

function getQuote(){
	var quote_output = "\<span class=\'quotemark\'\>\&ldquo\;\<\/span\>"+rnd_quote[i].quote+"\<span class\=\'quotemark\'\>\&rdquo\;\<\/span\>";
	document.getElementById('quote').innerHTML = quote_output;
	
	document.getElementById('qauthor').innerHTML = rnd_quote[i].author;
}
// -->