

	function changecss(obj, newclass)
	{
		obj.className = newclass;		
	}

	function date_to_full_dutch(datestring)
	{
		var t = datestring.split("-");
		t[1]=(t[1]=="01")?"januari":(t[1]=="02")?"februari":(t[1]=="03")?"maart":(t[1]=="04")?"april":(t[1]=="05")?"mei":(t[1]=="06")?"juni":(t[1]=="07")?"jul":(t[1]=="08")?"augustus":(t[1]=="09")?"september":(t[1]=="10")?"oktober":(t[1]=="11")?"november":(t[1]=="11")?"december":"";
		return t[0]+" "+t[1]+" "+t[2];		
	}


	function highlite(obj)
	{
		obj.style.backgroundColor = '#a2a7cd';
		obj.style.color = '#ffffff';
	}
	
	function idle(obj)
	{
		obj.style.backgroundColor = '#ffffff';
		obj.style.color = '#444444';			
	}





