function mOvrMenu(src,cellColor,boldColor,PlainColor) {
    if (!src.contains(event.fromElement)) { 
        src.style.cursor = 'hand';
        src.children.tags('A')[0].style.color = '#9C9E9C';
        objA = src.children.tags('A')[0];
        objA.children.tags('B')[0].style.color = boldColor;
        src.bgColor = cellColor; 
    }
}

function mOutMenu(src,cellColor,boldColor,PlainColor) { 
    if (!src.contains(event.toElement)) {
        src.style.cursor = 'default';
        src.children.tags('A')[0].style.color = PlainColor;
        objA = src.children.tags('A')[0];
        objA.children.tags('B')[0].style.color = boldColor;
        src.bgColor = cellColor; 
    }
}

function mClkMenu(src) { 
    if(event.srcElement.tagName=='TD') { 
        src.children.tags('A')[0].click(); 
    }
}
