//Helper scripts to HØJ Håndbold


function InputText(id, text)
{
    var txtObj = document.getElementById(id);
    //txtObj.value = (txtObj.value == text) ? "" : text;
    //if(txtObj.value != text)
    //{
    //    txtObj.value = text;
    //}
    //else
    //{
    //    txtObj.value = "";
    //}
}


//Close and open menu
function OpenMenu(elm)
{
    var arrLi = elm.parentNode.getElementsByTagName("li");
    
    for(var i in arrLi)
    {
        arrLi[i].className = "menuNotSelected";
    }
    elm.className = "menuSelected";
}


//Change background in CSS
function RandomBackground()
{
    //return '../Images/Backgrounds/background_0'+(parseInt(Math.random()*1))+'.jpg');
    document.body.background = "/Images/Backgrounds/background_0"+(parseInt(Math.random()*4))+".jpg";
    //return "url(Images/Backgrounds/background_01.jpg)";
}
