function ChangeBackgroundColor(id)
{

document.getElementById(id).style.backgroundColor= '#EAEAEA';
}



function ChangeBackgroundColor2(id)
{

document.getElementById(id).style.backgroundColor= '#fff';
}

function ChangeMeniuColor(id)
{

document.getElementById(id).style.backgroundColor= '#D8D8D8';
document.getElementById(id).className = 'meniupaz';
}

function ChangeMeniuColor2(sk,id)
{
if (sk == '1')
{
document.getElementById(id).style.backgroundColor= '#fff';
document.getElementById(id).className = 'meniupazne';
}

if (sk == '2')
{
document.getElementById(id).style.backgroundColor= '#fff';
document.getElementById(id).className = 'meniupazne';
}

if (sk == '3')
{
document.getElementById(id).style.backgroundColor= '#fff';
document.getElementById(id).className = 'meniupazne';
}

}
