quoteList = new Array();quoteList[0] = "(perfect for that special evolutionary biologist in your life!)";quoteList[1] = "(13 out of 14 Gal&#225;pagos finches approve!)";quoteList[2] = "(intelligently designed!)";
quoteList[3] = "(it's never to late/early to send an unholiday card!)";
quoteList[4] = "(there was a lot of mirth on the HMS Beagle)";


//randomization	var now = new Date();	var secs = now.getSeconds();	var raw_random_number = Math.random(secs);	var random_number = Math.round(raw_random_number * (quoteList.length));	if (random_number == quoteList.length){random_number = 0}			//set quote	var quote = quoteList[random_number];