// JavaScript Document
function showMenu(q,elmnt)
{
	document.getElementById(elmnt).style.visibility="visible";
	var thisOne=document.getElementById(q);
	thisOne.style.backgroundColor="#dfeee3";
	thisOne.style.color="#1a2d1f";
	thisOne.style.cursor="pointer";
}

function hideMenu(q,elmnt)
{
	document.getElementById(elmnt).style.visibility="hidden";
	var thisOne=document.getElementById(q);
	thisOne.style.backgroundColor="#c6dcca";
	thisOne.style.color="#566a5c";
	thisOne.style.cursor="auto";
}
function effeWachten(){
	var hopla=document.getElementById("tekzt");
	hopla.innerHTML="Even wachten, de afbeelding wordt geladen...";
	hopla.style.color="#aa2222";
	hopla.style.backgroundColor="#ffff99";
	hopla.style.fontSize="40";
	hopla.style.fontWeight="bolder";
	var zopla=document.getElementById("pagina");	
	zopla.parentNode.parentNode.style.cursor="wait";
}
function seng(){
	document.getElementById("seng").style.backgroundImage="url(http://www.sengersbroek.nl/images/sengersbroek.jpg)";
}
function seng2(){
	document.getElementById("seng").style.backgroundImage="url(http://www.sengersbroek.nl/images/sengersbroek2.jpg)";
}
function refreshMenu(){
	for(i=0;i<5;i++){
	lightDown(i);	
	}	
}
function newPicTxt(q,z,x,y)
  {
  document.getElementById(q).src=x;	
  document.getElementById(z).innerHTML=y;
  }
function newPic(q,x)
  {
  document.getElementById(q).src=x;	
  }
function oldPic(q,x)
  {
  document.getElementById(q).src=x;	
  }
  
function goTo(y)
	{
	window.open(y, "_self");
	}

function lightUp(x)
	{
	var menuItems=document.getElementsByTagName("td");
	var thisOne=menuItems[x];
	thisOne.style.backgroundColor="#dfeee3";
	thisOne.style.color="#1a2d1f";
	thisOne.style.cursor="pointer";
	}
function lightDown(x)
	{
	var menuItems=document.getElementsByTagName("td");
	var thisOne=menuItems[x];
	thisOne.style.backgroundColor="#c6dcca";
	thisOne.style.color="#566a5c";
	thisOne.style.cursor="auto";
	}
