

var quotes = new Array;

quotes.push("I need gentle touch, words, and eye contact 
	because my first six years are critical to a 
	lifetime of healthy relationships.");

quotes.push("&quot;Here is another quote.&quot;<br><br>John Doe<br>ACME Inc.");

quotes.push("Keep adding quotes like this.");

document.write(quotes[(Math.floor(Math.random() * quotes.length))]);

