function initZoekForm()
{
	var zoekButton = document.getElementById('zoekbutton');
	zoekButton.onmouseover = function()
	{
		this.src = 'images/contrast/zoekbutton_hover.jpg';
	};
	zoekButton.onmouseout = function()
	{
		this.src = 'images/contrast/zoekbutton.jpg';
	};
}

if ( window.attachEvent )
{
	window.attachEvent('onload', initZoekForm);
}
else if ( window.addEventListener )
{
	window.addEventListener('load', initZoekForm, true);
}
