/*********************************************/
/*     Menu-controls voor website Nieboer Transport  */
/*                                                                                      */
/*********************************************/

function show(elt) {
	elt.style.opacity = 1;
	elt.style.filter = 'alpha(opacity=100)';
}

function hide(elt) {
	if (elt.className.indexOf('_selected') == -1) {
		elt.style.opacity = 0;
		elt.style.filter = 'alpha(opacity=0)';
	}
}


function showImage(volgnr) {
	document.getElementById('grotefoto').src='picture.asp?kenmerk=links&volgnr=' + volgnr;
}

