var numQuotes = 5;

var quote1 = '<i>"Treat your audience like poets and geniuses and lo and behold, that\'s what they\'ll become."</i>';
var quote2 = '<i>"You\'re all poets, and so your words mean a lot more than you think they mean."</i>';
var quote3 = '<i>"Here\'s the improviser, below that here\'s the comedian, and below that here\'s the actor. But you, you\'re going to go on stage as the poet, because the poet is up here. So even if you fail as a poet, you\'ll drop into an improviser. And if you fail as an improviser, you\'ll drop into a comedian. And if you fail as a comedian, at least you\'ll be an actor."</i>';
var quote4 = '<i>"Keeping an audience entertained is a prerequisite to all art that seeks to communicate effectively."</i>';
var quote5 = '<i>"See, that\'s the Hook, and you gotta have a Hook.<br>More than the look, it\'s the hook that is the most important part.<br>The hook has to hit and the hook\'s gotta fit.<br>Hook\'s gotta hit hard in the heart."</i>';


function quoteWrite()
{
	var quoteNum = parseInt(Math.random()*numQuotes) + 1;
	eval("document.write(quote" + quoteNum + ")");
	return quoteNum;
}

function quoteBy(quoteByNum)
{
	if (quoteByNum <= 3)
	{
		document.write("-Del Close");
	}
	else if (quoteByNum == 4)
	{
		document.write("-Marc Kelly Smith");
	}
	else
	{
		document.write("-Taylor Mali");
	}
}

	

