
////////////////////////////////////////////////////////////////////////////////////////////

function ChangeBGOver(id,picture)
{
	document.getElementById(id).setAttribute("background",''+picture+'')
	document.getElementById(id).className = 'hovedmeny_over';	
}

function ChangeBGOut(id,picture)
{
	document.getElementById(id).setAttribute("background",''+picture+'')
	document.getElementById(id).className = 'hovedmeny';	
}

function Navigate(side)
{
	window.location.href = side;
}

