function createCorner() {
	thecontent = document.getElementById("content");
	h1s = thecontent.getElementsByTagName("h1")
	for (i=0; i < h1s.length; i++) {
		create = document.createElement("span");
		create.setAttribute("class","bottomleft");
		create.className = "bottomleft";
		h1s[i].appendChild(create);
	}

	h2s = thecontent.getElementsByTagName("h2")
	for (i=0; i < h2s.length; i++) {
		create = document.createElement("span");
		create.setAttribute("class","bottomleft");
		create.className = "bottomleft";
		h2s[i].appendChild(create);
	}
	
	h3s = thecontent.getElementsByTagName("h3")
	for (i=0; i < h3s.length; i++) {
		create = document.createElement("span");
		create.setAttribute("class","bottomleft");
		create.className = "bottomleft";
		h3s[i].appendChild(create);
	}
	
/*	h4s = thecontent.getElementsByTagName("h4")
	for (i=0; i < h4s.length; i++) {
		create = document.createElement("span");
		create.setAttribute("class","bottomleft")
		h4s[i].appendChild(create);
	}
*/
theSidebar = document.getElementById("sidebar");
	theitems = theSidebar.getElementsByTagName("li");
	theLast = theitems.length - 1;
	theitems[theLast].style.background = "none";

theFooter = document.getElementById("footer");
	theitems = theFooter.getElementsByTagName("li");
	theLast = theitems.length - 1;
	theitems[theLast].style.background = "none";


}

addLoadEvent(createCorner);
