<!--

// plaatje swappen bij mouseOver
function checkOver(image){
	re=new RegExp('_0.gif','gi');
	image.src=image.src.replace(re,"_1.gif");
}
// plaatje swappen bij mouseOut
function checkOut(image){
	// het plaatje van de huidige pagina moet actief blijven staan
	if(image.id != ('menu_'+last_clicked)){
		re=new RegExp('_1.gif','gi');
		image.src=image.src.replace(re,"_0.gif");
	}
}

// plaatje X naar plaatje Y blenden
var step=0;
function slideit(action){
	if (!document.images)
		return;
	
	// If the browser is IE 4.x
	if (document.all)
		slide.filters.blendTrans.apply();
	
	// Is er op vorige of volgende geklikt?
	if (action == 'next'){
		if (step<(preLoad.length-1))
			step++;
		else
			step=0;	
	} else { // action == 'previous'
		if (step==0)
			step = (preLoad.length-1);
		else
			step--;	
	}
	
	// Het nieuwe plaatje toewijzen
	document.images.slide.src=eval("preLoad["+step+"].src");

	// If the browser is IE 4.x
	if (document.all)
		slide.filters.blendTrans.play();
} // function slideit

function openwin(url,id,width,height){
	myWin=open(url,id,"width="+width+",height="+height+",toolbar=1,location=0,directories=0,resizable=0,scrollbars=1,status=1,screenX=300,screenY=100");
}

//-->