<!-- Begin

function printRandomQuote(myArray) {
	var myRow = Math.floor(Math.random()*myArray.length);
	var myQuote = myArray [myRow] [0];
	var myAuthor = myArray [myRow] [1];
	var myLink = myArray [myRow] [2];

	if (myLink == "#") {
		document.writeln ("    <div id='quote'>" + myQuote + "</div>");
	}
	else {
		document.writeln ("    <div id='quote'><a href='" + myLink +"' style='text-decoration:none'>&#187; " + myQuote + "</a></div>");
	}
	document.writeln ("    <div id='author'>" + myAuthor + "</div>");
}

//-->
