	window.onload = function() {
		if(document.getElementById("quote1")) document.getElementById("quote1").style.display = "none";
		if(document.getElementById("quote2")) document.getElementById("quote2").style.display = "none";
		if(document.getElementById("quote3")) document.getElementById("quote3").style.display = "none";
		if(document.getElementById("showQuote1")) document.getElementById("showQuote1").onclick = showHide;
		if(document.getElementById("showQuote2")) document.getElementById("showQuote2").onclick = showHide;
		if(document.getElementById("showQuote3")) document.getElementById("showQuote3").onclick = showHide;
		function showHide() {
			var el = document.getElementById("quote" + String(this.id.match(/\d/)));
			if(el.style.display == "none") el.style.display = "";
			else el.style.display = "none";
			if(this.firstChild.nodeValue == "More") this.firstChild.nodeValue = "Hide";
			else this.firstChild.nodeValue = "More";
		}
	}



