// tekst switcher homepage
function switch1(div) {
	if (document.getElementById('home_nl')) {
		var option=['home_nl','home_en','home_du','home_fr'];
		for(var i=0; i<option.length; i++)
		{ obj=document.getElementById(option[i]);
		obj.style.display=(option[i]==div)? "block" : "none"; }
	}
}

function switchImg(i){
	document.images["test"].src = i;
}



