function ChangeBackgroundColor(id)
{

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



function ChangeBackgroundColor2(id)
{

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

function ChangeMeniuColor(id)
{

document.getElementById(id).className = 'meniu_pa';
}

function ChangeMeniuColor2(sk,id)
{
if (sk == '1')
{

document.getElementById(id).className = 'meniu_p';
}

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';
}

}

function bigImage(name)
{
document.getElementById('picdiv').style.display ="block";
document.getElementById('picture').src= 'gallery/big_'+name;


}

function bigImageClose()
{
document.getElementById('picdiv').style.display ="none";



}
