/*
function Onmouseover(fom) {
    fom.className = 'index_nav_ovr';
}
function Onmouseout(fom) {
    fom.className = 'index_nav';
}*/

function mOvr(src) {
    if (!src.contains(event.fromElement)) {
        src.style.cursor = 'hand';
        src.className = 'index_nav_ovr';
    }
}
function mOut(src) {
    if (!src.contains(event.toElement)) {
        src.style.cursor = 'default';
        src.className = 'index_nav';
    }
} 