function haalOp(pagina,duur) {
	tijds = duur;
	
if (getCookie(''+pagina+'')) {
	//alert(getCookie(''+pagina+''));
	ditcookie = (getCookie(''+pagina+''));
	//alert(ditcookie);
	setTekst(''+pagina+'',''+ditcookie+'');
	//fadetext(pagina);
}
else 
	{
	 setCookie(''+pagina+'','0');
	 setTekst(''+pagina+'','0');
	//fadetext();
	}
}

function setTekst(id,hh){ 
	hex= hh; // Initial color value.
	pagina = id;
	//alert(pagina);
	//alert(hex);
	  if(hex<256) { //If color is not black yet
	   // hex-=-5; // increase color darkness
		kleur = hex+","+hex+","+hex;
		document.getElementById("tekst").style.color="rgb("+kleur+")";
		//document.getElementById(+menuID+).style.color="rgb("+kleur+")";
		setTimeout("fadetext()",tijds); 
	  }
}
function fadetext(){ 
	//alert(pagina);
	 if(hex<255) { //If color is not white yet
    hex-=-1; // increase color darkness
	kleur = hex+","+hex+","+hex;
    document.getElementById("tekst").style.color="rgb("+kleur+")";
	// document.getElementById(+menuID+).style.color="rgb("+kleur+")";
    setTimeout("fadetext()",tijds); 
	//alert(hex);
	//alert(pagina);

	window.status = hex; 
	setCookie(''+pagina+'', ''+hex+'');
  }
  else
  //hex = hex
   hex=255 //reset hex value
}


