function switchimage(naam) {
document.getElementById('volledigimg').src = "images/"+naam+".gif";
document.getElementById('detailimg').src = "images/"+naam+"_detail.jpg";
}

function Klik(hoofdstuk) {
switch(hoofdstuk) {
	case 0:		{
			location.href="index.php"; break;
			}
	case 1:		{
			location.href="index.php?nav=watkunnenwij"; break;
			}
	case 2:		{
			location.href="index.php?nav=watmakenwij"; break;
			}
	case 3: 		{
			location.href="index.php?nav=waarvindtuons"; break;
			}
	case 4: 		{
			location.href="index.php?nav=contact"; break;
			}
	case 5: 		{
			break;
			}
	case 6: 		{
			location.href="index.php?nav=producten"; break;
			}
	case 7: 		{
			location.href="index.php?nav=route"; break;
			}
	case 8: 		{
			location.href="mailto:info@ronddruk.nl"; break;
			}
	}
}

function over(id) {
if(document.getElementById) {
	document.getElementById(id).src = "images/"+id+"_focus.gif";
}
}

function out(id) {
if(document.getElementById) {
	document.getElementById(id).src = "images/"+id+".gif";
}
}

