function buOv(id)
{
	document.getElementById(id + 'Div').className = 'homeLink homeOv';
	document.getElementById(id + 'A').className = 'homeA' + id;
/* 	document.getElementById(id + 'Img').src = '/gfx/pijl' + id + '.png'; */
}

function buOut(id)
{
	document.getElementById(id + 'Div').className = 'homeLink home' + id;
	document.getElementById(id + 'A').className = 'a2';
/* 	document.getElementById(id + 'Img').src = '/gfx/pijl1.png'; */
}


function bu2Ov(id)
{
	document.getElementById("a" + id).className = 'a3Ov';
/* 	document.getElementById("img" + id).src = '/gfx/pijl2Ov.png'; */
}

function bu2Out(id)
{
	document.getElementById("a" + id).className = 'a3';
/* 	document.getElementById("img" + id).src = '/gfx/pijl2.png'; */
}




function clearDefault(id)
{
  if(id.defaultValue == id.value)
  {
  	id.value = "";
  }
}

function setDefault(id)
{
  if(id.value == "")
  {
  	id.value = id.defaultValue;
  }
}




