<!-- 
// Horizontaal menu
document.writeln('<div id="menuh">');
document.writeln('<ul>');
document.writeln('<li id="home"><a href="index.htm">Homepage</a></li>');
document.writeln('<li id="wiezijnwij"><a href="wie_zijn_wij.htm">Wie zijn wij</a></li>');
document.writeln('<li id="onzehonden"><a href="onze_honden.htm">De honden</a></li>');
document.writeln('<li id="nieuws"><a href="nieuws.htm">Nieuws</a></li>');
document.writeln('<li id="toekomst"><a href="toekomst.htm">Pups</a></li>');
document.writeln('<li id="nakomelingen"><a href="nakomelingen.htm">Nakomelingen</a></li>');
document.writeln('<li id="fotoboek"><a href="fotoboek.htm">Fotoboek</a></li>');
document.writeln('<li id="gastenboek"><a href="gastenboek.htm">Gastenboek</a></li>');
document.writeln('<li id="links"><a href="links.htm">Links</a></li>');
document.writeln('<li id="contact"><a href="contact.htm">Contact</a></li>');
document.writeln('</ul>');
document.writeln('</div>');

var sectionWithFocus = ""; 

function fncSetLeftMenuItemActive(menuitem){
	var elDivMenuList = document.getElementById('menuh');
	
	var elDiv = elDivMenuList.getElementsByTagName('li');
	for (var i = 0; i < elDiv.length; i++){
		elDiv[i].className = '';
	}
	document.getElementById(menuitem).className = 'current';
	sectionWithFocus = menuitem; 
	return true; 
} 
//--> 
