function onmouseOverClass(obj)
{
var add = document.getElementById(obj);
add.setAttribute("class", "highlight");
add.setAttribute('className', 'highlight');
}

function onmouseOutClass(obj)
{
var add = document.getElementById(obj);
add.removeAttribute('class', 'highlight');
add.removeAttribute('className', 'highlight');
}
