function init() {
	
	if (typeof init_navigatie == 'function') {
		init_navigatie();
	}
	
	if (typeof init_logo == 'function') {
		init_logo();
	}

	if (typeof init_homepage == 'function') {
		init_homepage();
	}
	
	if (typeof init_buffetten == 'function') {
		init_buffetten();
	}
	
	if (typeof init_referenties == 'function') {
		init_referenties();
	}
}

function init_logo() {
	var logo = document.getElementById('logo');
	
	if (logo) {
	
		logo.onclick = function () {
			
			var ahrefs = this.getElementsByTagName('a');
			
			if (ahrefs && ahrefs.length > 0) {
				
				document.location=ahrefs[0].href;
				
			}
			
		}
		
	}
	
}
