// JavaScript Document
function hovedmenu(id){
var menu=new Array('nyheder','projekter','tegnestuen','kontakt');
for(i in menu){document.getElementById(menu[i]).style.className='hovedmenu_passiv';}
document.getElementById(id).style.color='#F00';
}
function undermenu(id){
var menu=new Array('dronningborg','elgaardsminde','fortegaarden','green_house','hojagervej','idomraasted','middelfart','skjernbank','vestreengvej');
for(i in menu){document.getElementById(menu[i]).style.color='#000';}
document.getElementById(id).style.color='#FFF';
document.getElementById(id).style.fontWeight='bold';
}
function statistik(){
var dir = location.href.substring(0,location.href.lastIndexOf('/')+1);
var url = location.href.substring(dir.length,location.href.length+1);
if(url==''||url==undefined){url='index.html';}
var reefa=document.referrer;
var agent=escape(navigator.userAgent);
var width=screen.width;
var height=screen.height;
var color=screen.colorDepth;
document.write("<img width=1 height=1 src='http://statistik.eschle.net/count_arkplan.php?&navn="+url+"&reefa="+reefa+"&agent="+agent+"&width="+width+"&height="+height+"&color="+color+"'>");
}