function clearQuotes() {
	var elmQuotes = document.getElementById("quotes");
	if (elmQuotes) {
		while (elmQuotes.hasChildNodes()) {
			elmQuotes.removeChild(elmQuotes.lastChild);
		}
	}
	return elmQuotes;
}

function openQuotes() {
	var elmQuotes = clearQuotes(elmQuotes);
	if (elmQuotes) {
		elmQuotes.innerHTML = '<br /> \
		 "In the Top 5 of Most Popular Marathons"<br /> - <i>Impact Magazine</i><br /> \
		 <br /> \
		 "The Royal Victoria Marathon on Vancouver Island in British Columbia is known for its flat, scenic course along the Pacific Ocean and stellar race organization."<br /> - <i>Bart Yasso, Runner’s World Magazine</i><br /> \
		 <br /> \
		 "World famous for its big-city organization and small-town friendliness. I can’t imagine a friendlier marathon than the Royal Victoria Marathon. You’ll feel like you know everyone--from the race director to all the volunteers on the course."<br /> - <i>Amby Burfoot, Editor at Large, Runner’s World Magazine.</i><br /> \
		 <br /> \
		 "The RVM is truly a unique big city marathon with one of the most picturesque courses. It comes with an event team that delivers the demands of a big race with the personal touch that makes the whole weekend so memorable."<br /> - <i>Steve King, Legendary Voice of the RVM.</i><br /> \
		 <div class="quoteToggle"><a href="javascript:closeQuotes();">...Less</a></div>';
	}
}

function closeQuotes() {
	var elmQuotes = clearQuotes(elmQuotes);
	if (elmQuotes) {
		elmQuotes.innerHTML = '<div class="quoteToggle"><a href="javascript:openQuotes();">...More</a></div>';
	}
}
