function startList() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menu1");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="li") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}

function IA_menu(point) {

	if (point == 'home') {
		document.getElementById('pointer').style.marginLeft = 15+"px";
	}
	
	if (point == 'services') {
		document.getElementById('pointer').style.marginLeft = 86+"px";
	}
	
	if (point == 'interesse') {
		document.getElementById('pointer').style.marginLeft = 171+"px";
	}
	
	if (point == 'solliciteren') {
		document.getElementById('pointer').style.marginLeft = 273+"px";
	}
	
	if (point == 'tarieven') {
		document.getElementById('pointer').style.marginLeft = 372+"px";
	}
	
	if (point == 'actueel') {
		document.getElementById('pointer').style.marginLeft = 451+"px";
	}
	
	if (point == 'pedagoog') {
		document.getElementById('pointer').style.marginLeft = 535+"px";
	}
	
	if (point == 'over_ons') {
		document.getElementById('pointer').style.marginLeft = 622+"px";
	}
	
	if (point == 'contact') {
		document.getElementById('pointer').style.marginLeft = 702+"px";
	}

}


function menu_default() {

	var page = 15;
	
	document.getElementById('pointer').style.marginLeft = page+"px";

}


function replaceImg(imgId) {
	
	if (imgId == 'imgFamilyNanny') { document.getElementById(imgId).src = './images/TC-services-family-nanny.png'; }
	if (imgId == 'imgHolidayNanny') { document.getElementById(imgId).src = './images/TC-services-holiday-nanny.png'; }
	if (imgId == 'imgMyNanny') { document.getElementById(imgId).src = './images/TC-services-my-nanny.png'; }
	
}


function resetImg(imgId) {
	
	if (imgId == 'imgFamilyNanny') { document.getElementById(imgId).src = './images/family_nanny_over.png'; }
	if (imgId == 'imgHolidayNanny') { document.getElementById(imgId).src = './images/holiday_nanny_over.png'; }
	if (imgId == 'imgMyNanny') { document.getElementById(imgId).src = './images/my_nanny_over.png'; }
	
}