function setLinkColor()
{
<!--alert("I am executing setLinkColor from the include file!");-->
x=document.getElementsByTagName('body');
<!--alert("In setLinkColor");-->
if (x[0].id == 'produkter' ){
document.getElementById("produkter_link").style.color="#F75912";}
if (x[0].id == 'referencer'){
document.getElementById("referencer_link").style.color="#F75912";}
if (x[0].id == 'nyheder'){
document.getElementById("nyheder_link").style.color="#F75912";}
if (x[0].id == 'om_os'){
document.getElementById("about_link").style.color="#F75912";}
if (x[0].id == 'kontakt'){
document.getElementById("kontakt_link").style.color="#F75912";}
if (x[0].id == 'bestil'){
document.getElementById("bestil_link").style.color="#F75912";}
}

// Changes color of links when clicked and displays the content of the tag with id = Link_x_c
function LeftNav(link_id,links_in_nav)
{
<!--alert("In LeftNav. link_id: " + link_id + ", links_in_nav: " + links_in_nav);-->
if(link_id == 'default'){
	document.getElementById('default').style.display="inline";
	}
else{
	document.getElementById('default').style.display="none";
	}

for (i=0;i<links_in_nav;i++){ 
	if(link_id == i)
		{
		<!--alert("Setting color for link_" + i);-->
		document.getElementById('Link_' + link_id + 'c').style.display="inline";
		document.getElementById('Link_' + link_id).style.color="#F75912";
		}
	else
		{
		<!--alert("Not displayning content of link_" + i);-->
		document.getElementById('Link_' + i + 'c').style.display="none";		
		document.getElementById('Link_' + i).style.color="";
		}
	}
}	
