function rollover(id, image)
{
	if (document.images) 
	{
		var knop = new Image();
		knop.src = image;
		document[id].src = knop.src
	}
}

