function changePic(el)
{
	temp = el.src;
	alttemp = el.alt;
	temp2 = $('mainimg').src;
	atemp2 = $('mainimg').alt;
	$('mainimg').src = temp;
	$('mainimg').alt = alttemp;
	$('bijschrift').innerHTML = alttemp;
	if(alttemp=='')$('bijschrift').hide();
	else $('bijschrift').show();
}

