quotes = new Array
quotes[0] = "From the dark, secluded valleys, I heard the ancient songs of sadness...";
quotes[1] = "Let's go down to the water's edge, and we can cast away those doubts...";
quotes[2] = "Julius Caesar, and the Roman Empire, couldn't conquer the blue sky...";
quotes[3] = "I ain't the sharpest tool in the shed...";
quotes[4] = "Remember your reflection in a pool, in a puddle...";
quotes[5] = "The dust has been collecting on the corners of my mind...";
quotes[6] = "He's told us not to blow it, 'cause he knows it's all worthwhile...";
quotes[7] = "This is my four-leaf clover...";
quotes[8] = "Men go crazy in congregations - they only get better one by one...";
quotes[9] = "You can sew it up, but you still see the tear...";
quotes[10] = "It doesn't matter where you've been, as long as it was deep...";
quotes[11] = "Scouring the sky so the stars will shine bright...";
quotes[12] = "For Time will catch us in both hands to blow away like grains of sand...";
quotes[13] = "When you're all alone in the lands of forever...";
quotes[14] = "We talk and talk 'round it all. Who'd have thought we'd end up here?";

authors = new Array;
authors[0] = "Sting";
authors[1] = "Annie Lennox";
authors[2] = "Crowded House";
authors[3] = "Smash Mouth";
authors[4] = "Lisa Loeb &amp; Nine Stories";
authors[5] = "Annie Lennox";
authors[6] = "David Bowie";
authors[7] = "Tears For Fears";
authors[8] = "Sting";
authors[9] = "U2";
authors[10] = "The Cars";
authors[11] = "Lisa Loeb &amp; Nine Stories";
authors[12] = "Annie Lennox";
authors[13] = "Avril Lavigne";
authors[14] = "Natalie Imbruglia";

sources = new Array;
sources[0] = "Mad About You";
sources[1] = "Why";
sources[2] = "Weather With You";
sources[3] = "All Star";
sources[4] = "Hurricane";
sources[5] = "Legend in My Living Room";
sources[6] = "Starman";
sources[7] = "Head Over Heels";
sources[8] = "All This Time";
sources[9] = "The Sweetest Thing";
sources[10] = "Just What I Needed";
sources[11] = "Alone";
sources[12] = "Primitive";
sources[13] = "My World";
sources[14] = "Shiver";

quotenumber = quotes.length;

var randomno = Math.floor(quotenumber * Math.random());

var quote = quotes[randomno];
var author = authors[randomno];
var source = sources[randomno];

document.write("<center><quote><em>\""+quote+"\"</em></quote><br>"+
author+" &nbsp; "+"<strong>"+source+"</strong></center>");