function M1menuAmouse(obj,bgColor,bgImage) {
    obj.style.backgroundImage="url("+bgImage+")";
    obj.style.backgroundColor=bgColor;
    return false;
}
function M1menuBmouse(obj,bgColor,bdColor) {
    obj.style.backgroundColor=bgColor;
    obj.style.borderColor=bdColor;
    return false;
}
function M1menuCmouse(name,bgColor) {
    document.getElementById("M1menuC-"+name).style.backgroundColor=bgColor;
    return false;
}

