﻿/****** metody menici grafiku polozky v vertikalnim menu ******/
function onMouseOverSubMenu(p_Id, p_LabelId, p_IdH1)
{
    window.document.getElementById(p_Id).className = "contentItemHover";
}

function onMouseOutSubMenu(p_Id, p_LabelId, p_IdH1)
{
    window.document.getElementById(p_Id).className = "contentItem";
}

/****** metody menici grafiku polozky v horizontalnim menu ******/
function onMouseOverRootMenu(p_Id, p_LabelId) {
    if (p_Id != "") {
        window.document["item" + p_Id + "L"].src = "img/default/css/menuItemHover.png";
        window.document["item" + p_Id + "C"].src = "img/default/css/menuItemHover.png";
        window.document["item" + p_Id + "R"].src = "img/default/css/menuItemHover.png";
        window.document.getElementById(p_Id + "Text").className = "menuItemTextHover";
        window.document.getElementById(p_LabelId).style.color = "White";
    }
}

function onMouseOutRootMenu(p_Id, p_LabelId) {
    if (p_Id != "") {
        window.document["item" + p_Id + "L"].src = "img/default/css/menuItem.png";
        window.document["item" + p_Id + "C"].src = "img/default/css/menuItem.png";
        window.document["item" + p_Id + "R"].src = "img/default/css/menuItem.png";
        window.document.getElementById(p_Id + "Text").className = "menuItemText";
        window.document.getElementById(p_LabelId).style.color = "#5d6c8d";
    }
}
