function highlighted() {
el = event.srcElement ;
if (el.getAttribute("glow") != null) {
el.className = "hilighton" ;
}
}

function not_highlighted() {
el = event.srcElement ;
if (el.getAttribute("glow") != null) {
el.className = "hilightoff";
}
}

document.onmouseover = highlighted ;
document.onmouseout = not_highlighted ;
