window.onload=function() {

	if ( container = document.getElementById('homepage') ) {
		var kolommen = container.getElementsByTagName('div');
		for(i=0;i<kolommen.length;i++) {
			if ( kolommen[i].getElementsByTagName('a').length > 0 ) {
				kolommen[i].onclick = function() { window.location.href = this.getElementsByTagName('a')[this.getElementsByTagName('a').length-1] };
				if (i != 1) { 
					kolommen[i].onmouseover = function() { this.style.backgroundColor = '#f0f0f0' };
				}
				kolommen[i].onmouseout = function() { this.style.backgroundColor = '' };
				kolommen[i].style.cursor = "pointer";
				}
		}
	} else if ( container = document.getElementById('advocatenlijst_container') ) {
		var listitems = container.getElementsByTagName('li');
		for(i=0;i<listitems.length;i++) {
			if ( listitems[i].getElementsByTagName('a').length > 0 ) {
				listitems[i].onclick = function() { window.location.href = this.getElementsByTagName('a')[this.getElementsByTagName('a').length-1] };
				listitems[i].onmouseover = function() { this.style.backgroundColor = '#f0f0f0' };
				listitems[i].onmouseout = function() { this.style.backgroundColor = '' };
				listitems[i].style.cursor = "pointer";
				}
		}
	} else if ( container = document.getElementById('paginaopsomming') ) {
		var listitems = container.getElementsByTagName('li');
			for(i=0;i<listitems.length;i++) {
				if ( listitems[i].getElementsByTagName('a').length > 0 ) {
					listitems[i].onclick = function() { window.location.href = this.getElementsByTagName('a')[this.getElementsByTagName('a').length-1] };
					listitems[i].onmouseover = function() { this.style.backgroundColor = '#f0f0f0' };
					listitems[i].onmouseout = function() { this.style.backgroundColor = '' };
					listitems[i].style.cursor = "pointer";
					}
		}
	}
}