// JavaScript Document
function setMenuHeaderBack() {
	var menuObj = document.getElementById("current").parentNode.parentNode;
	var menuHeadObj = menuObj.getElementsByTagName("h3").item(0);
	var menuHeadHeight = menuHeadObj.offsetHeight;
	var menuHeadText = menuHeadObj.textContent;
	
	if (menuHeadObj.className != "moduletable_menu_all") {
		if (menuHeadHeight==36) {
			menuHeadObj.style.backgroundImage = "url('"+headSmall+"')";
		} else if (menuHeadHeight==52) {
			menuHeadObj.style.backgroundImage = "url('"+headLarge+"')";
		} 
	}
}

