function MOver(id){   
    document.getElementById('menuVTable').style.borderWidth="0px 0px 0px 0px";
    document.getElementById('menuVTable').style.borderStyle="solid";
    document.getElementById('menuVTable').style.borderColor="#E4DFB3";
    //document.getElementById(id).style.backgroundColor="#FAFAFA";
    if (document.getElementById(id).className!="selected"){
        document.getElementById(id).style.backgroundColor="#E7EDE7";
    }
    document.getElementById(id).style.borderWidth="0px 0px 0px 5px";
    document.getElementById(id).style.borderStyle="solid";
    if (document.getElementById(id).className=="selected"){
        document.getElementById(id).style.borderColor="#B2A149";
    } else {
        document.getElementById(id).style.backgroundColor="#E7EDE7";
        document.getElementById(id).style.borderColor="#576A5E";
    }
    document.getElementById(id).style.cursor="pointer";
}

function MOut(id){    
   document.getElementById('menuVTable').style.borderWidth="0px 0px 0px 0px";
    document.getElementById(id).style.backgroundColor="#FFFFFF";    
    document.getElementById(id).style.borderWidth="0px 0px 0px 5px";
    document.getElementById(id).style.borderStyle="solid";
    document.getElementById(id).style.borderColor="#FFFFFF";
    document.getElementById(id).style.cursor="pointer"; 
}

function MSOut(id){    
    document.getElementById('menuVTable').style.borderWidth="0px 0px 0px 0px";
    //document.getElementById(id).style.backgroundColor="#FAFAFA";
    //document.getElementById(id).style.backgroundColor="#F2F0DB";
    //document.getElementById(id).style.backgroundColor="#EDEBCD";
    document.getElementById(id).style.backgroundColor="#DAD596";    
    document.getElementById(id).style.borderWidth="0px 0px 0px 5px";
    document.getElementById(id).style.borderStyle="solid";
    //document.getElementById(id).style.borderColor="#b2a149";
    document.getElementById(id).style.borderColor="#A69744";
    document.getElementById(id).style.cursor="pointer"; 
}

function MClick(){    
    //document.getElementById(id).style.backgroundColor="#FAFAFA";
    //document.getElementById(id).style.backgroundColor="#F2F0DB";
    //document.getElementById(id).style.backgroundColor="#EDEBCD";
    /*document.getElementById(id).style.backgroundColor="#DAD596";
    document.getElementById(id).style.borderWidth="0px 0px 0px 5px";
    document.getElementById(id).style.borderStyle="solid";
    //document.getElementById(id).style.borderColor="#B2A149";
    document.getElementById(id).style.borderColor="#A69744";
    document.getElementById(id).style.cursor="pointer";*/
}
