window.onload = moreQuote;

var quote = "I am convinced that if it were not for the facilities and programs that the Teen Center provides, many more of our youth would be involved in drugs, gangs and other negative behaviors. The entire community needs to be aware of and support this valuable resource in our community.";

function moreQuote() {
	document.getElementById("morequote").onclick = swapText;
}

function swapText() {
	document.getElementById("quote").innerHTML = quote;
	return false;
}