var HANDLE_TIMEOUT = null;

function changeImage01(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-portret.jpg)";
}

function changeImage02(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-reportage.jpg)";
}

function changeImage03(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-galerievictorie.jpg)";
}

function changeImage04(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-fotoalbumsenlijsten.jpg)";
}

function changeImage05(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-renatedevries.jpg)";
}

function changeImage06(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-workshop.jpg)";
}

function changeImage07(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-prijzen.jpg)";
}

function changeImage08(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-contact.jpg)";
}

function changeImage09(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-portfolio.jpg)";
}

function changeImage10(id)
{
	if(HANDLE_TIMEOUT != null)
		window.clearTimeout(HANDLE_TIMEOUT);
	document.getElementById(id).style.backgroundImage = "url(images/show-links.jpg)";
}

function backImage(id)
{
	HANDLE_TIMEOUT = window.setTimeout("replaceImageAgain('"+id+"')", 500);
}

function replaceImageAgain(id)
{
	document.getElementById(id).style.backgroundImage = 'url(images/default.jpg)'
}



