//MENU FUNCTIONALITY //================== function mOver(src) { if (!src.contains(event.fromElement)) { src.style.cursor = 'hand'; } } function mOut(src) { if (!src.contains(event.toElement)) { src.style.cursor = 'default'; } } function mClick(src) { if (event.srcElement.tagName=='TD') { src.children.tags('A')[0].click(); } } function mOverOVR(src) { if (src.className=='BG-WINDOW' || src.className=='BG-WINDOW2') { src.className=src.className + '_OVR'; } } function mOutOVR(src) { src.className=src.className.replace('_OVR', ''); }