
function menuLeftOver(id) {
    var menuLeftLi = document.getElementById("menu_left_li_" + id);
    var menuLeftA = document.getElementById("menu_left_a_" + id);

//    menuLeftLi.style.background = "url(../images/menu_left_li_on_bg.jpg) no-repeat";
    menuLeftLi.style.background = "url(images/menu_left_li_on_bg.jpg) no-repeat";
    menuLeftLi.style.cursor = "pointer";

    menuLeftA.style.color = "#9b0012";
}

function menuLeftOut(id) {
    var menuLeftLi = document.getElementById("menu_left_li_" + id);
    var menuLeftA = document.getElementById("menu_left_a_" + id);
    
//    menuLeftLi.style.background = "url(../images/menu_left_li_bg.jpg) no-repeat";
    menuLeftLi.style.background = "url(images/menu_left_li_bg.jpg) no-repeat";
    menuLeftLi.style.cursor = "auto";

    menuLeftA.style.textDecoration = "none";
    menuLeftA.style.color = "black";
}

function openLink(link) {
    location.href=link;
}
