function activateNav() {
	document.getElementById('nav1').innerHTML = '<a href="boek.html" target="bottom"><img src="images/button_boek.gif" alt="" width="152" height="54" border="0"></a>';
	document.getElementById('nav2').innerHTML = '<a href="kluun.html" target="bottom"><img src="images/button_kluun.gif" alt="" width="145" height="54" border="0"></a>';
	document.getElementById('nav3').innerHTML = '<a href="stijn.html" target="bottom"><img src="images/button_stijn.gif" alt="" width="145" height="54" border="0"></a>';
	document.getElementById('nav4').innerHTML = '<a href="muziek.html" target="bottom"><img src="images/button_muziek.gif" alt="" width="145" height="54" border="0"></a>';
	document.getElementById('nav5').innerHTML = '<a href="spel.html" target="bottom" onclick="deactivateNav();return true;"><img src="images/button_spel.gif" alt="" width="153" height="54" border="0"></a>';
	parent.frames[1].document.location.href = "spel.html";
	return true;
}








function deactivateNav() {
	document.getElementById('nav1').innerHTML = '<img src="images/button_top_empty_start.gif" alt="" width="152" height="54" border="0">';
	document.getElementById('nav2').innerHTML = '<img src="images/button_top_empty.gif" alt="" width="145" height="54" border="0">';
	document.getElementById('nav3').innerHTML = '<img src="images/button_top_empty.gif" alt="" width="145" height="54" border="0">';
	document.getElementById('nav4').innerHTML = '<img src="images/button_top_empty.gif" alt="" width="145" height="54" border="0">';
	document.getElementById('nav5').innerHTML = '<a href="spel.html" target="bottom" onclick="activateNav();return true;"><img src="images/button_spel_stop.gif" alt="" width="153" height="54" border="0"></a>';
	parent.frames[1].document.location.href = "spel.html";
	return true;
}


