function makeQuoteBoxes() {
	var quotes = document.body.getElementsByTagName("span");
	for (var i = 0; i < quotes.length; i++) {
		var thisq = quotes[i];
		if (thisq.getAttribute("name") == 'quoteleft') {
			var qtext = thisq.innerHTML;
			var newq = document.createElement("span");
			newq.setAttribute("class", "quoteleft");
			newq.innerHTML = qtext;
			thisq.appendChild(newq);
		} else if (thisq.getAttribute("name") == 'quoteright') {
			var qtext = thisq.innerHTML;
			var newq = document.createElement("span");
			newq.setAttribute("class", "quoteright");
			newq.innerHTML = qtext;
			thisq.appendChild(newq);
		}
	}
}
