﻿/****** metody menici grafiku polozky v vertikalnim menu ******/
function onMouseOverSubMenu(p_LabelId)
{
    window.document.getElementById(p_LabelId).style.color = 'White';
}

function onMouseOutSubMenu(p_LabelId)
{
   window.document.getElementById(p_LabelId).style.color = 'Black';
}

/****** metody menici grafiku polozky v horizontalnim menu ******/
function onMouseOverRootMenu(p_Id)
{
    window.document.getElementById(p_Id).style.color = '#cb3f32';
}

function onMouseOutRootMenu(p_Id)
{
    //window.document.getElementById(p_Id).style.color = '#305577';
}

function showSubMenu(p_TableName)
{
    var submenu = window.document.getElementById(p_TableName);
    if(submenu != null)
    {
        window.document.getElementById(p_TableName).style.display = 'block';
    }
}

function hideSubMenu(p_TableName)
{
    var submenu = window.document.getElementById(p_TableName);
    if(submenu != null)
    {
        window.document.getElementById(p_TableName).style.display = 'none';
    }
}