function quote() {
	var quote = $("#quote");
	var quotes = new Array();
	quotes[0] = "Tough-minded and tenacious advocates.";
	quotes[1] = "Banducci and Woodard recently secured their clients the largest jury verdict ever awarded in the State of Idaho.";
	quotes[2] = "The most effective and relentless commercial litigators in the state.";
	quotes[3] = "Passionate and persuasive advocacy.";

	var randomNumber = Math.floor(Math.random() * quotes.length);
	quote.text('"' + quotes[randomNumber] + '"');
}
