if (document.getElementById('accos'))
{
	var acs = document.getElementById('accos').getElementsByTagName('div');
	for (i = 0; i < acs.length; i++)
	{
		if (acs[i].className == 'acco')
		{
			acs[i].onmouseover = function()
			{
				this.oldbg = this.style.backgroundColor;
				this.oldbgi = this.style.backgroundImage;
				this.style.background = '';
				this.style.backgroundColor = '#FF8B0F';
				this.style.backgroundRepeat = 'no-repeat';
			}
			
			acs[i].onmouseout = function()
			{
				this.style.backgroundImage = this.oldbgi;
				this.style.backgroundColor = this.oldbg;
				this.style.backgroundRepeat = 'repeat-x';
			}
			
			acs[i].onclick = function()
			{
				//window.open(this.getElementsByTagName('a')[0].href);
				document.location.href = this.getElementsByTagName('a')[0].href;
				return false;
			}
		}
	}
}

if (document.getElementById('boek'))
{
	document.getElementById('boek').onmouseover = function()
	{
		window.status = '';
		return true;
	}
}

document.getElementById('head').onclick = function()
{
	document.location.href = "/";
}

