<!--

function hilite(e) {
	e.children[0].src = "/e_morcillo/images/selover.gif"
	e.style.color = "orange"
	e.style.fontWeight = "bold"
}

function restore(e) {
	e.children[0].src = "/e_morcillo/images/sect.gif"
	e.style.color = ""
	e.style.fontWeight = "normal"
}

function menuover(e) {
	e.className = "menuover";
	e.children[0].style.color="black";
}

function menuout(e) {
	e.className = "menu";
	e.children[0].style.color="346ac2";
}

function menuclick(e) {
	e.children[0].click();
}
//-->