function initialize(){		
	
	runDom(document.body);
	
}

function runDom(element){
	if(element.tagName=="DIV"){
		procesDIV(element);
	}
	
	
	var i = 0;
	var kinderen = element.childNodes;
	if(kinderen!=null){
		while(i<kinderen.length){
			var kind = kinderen[i];
			if(kind!=null){
				runDom(kind);
			}
			i++;
		}
	}		
}
function procesDIV(element){
	var className = element.className;
	var fullClass = className;
	className = className.substring(0,5);
	
	
	if(fullClass.indexOf("hoog")>0){
		h = element.offsetHeight;
		element.style.height = h+"px";
		//alert(element.style.height);
		
	}
	/*
	if(fullClass=="agendainhoudclosed"){
		//cons(element.getAttribute("order"));
		//registerAgendaregel(element);
	}
	*/
	
	
}

	function linkNaar(lk){
		loc = document.location+"";
		if(loc.indexOf("/webshop/")<1){
			lk = "/webshop/"+lk;
		}
		//alert(lk);
		document.location.href=lk;
	}
	
