﻿<!--

var deTimert;
var scrollTot = -1;
var x = width = 0;
var breedte;

function scrollLinks () {

	if (scrollTot == -1) {
		get$("divfotocontainer1").style.overflow = "auto";
		get$("fotodivcontainer").style.overflow = "visible";
		scrollTot = get$("feauteaux").offsetWidth - get$("divfotocontainer1").offsetWidth;
		breedte = get$("feauteaux").offsetWidth;
		get$("divfotocontainer1").style.overflow = "hidden";
		get$("fotodivcontainer").style.overflow = "visible";
	}
	
	var scrollert = get$("fotodivcontainer");
 
 	deTimert = setTimeout ("scrollLinks ()", 20);
	
	if (x > -scrollTot) {
	x -= 5;
	width += 5;
	}
	
	scrollert.style.left = x + "px";
	scrollert.style.width = (breedte + width) + "px";
}


function scrollRechts () {

	if (scrollTot == -1) {
	    get$("divfotocontainer1").style.overflow = "auto";
	    get$("fotodivcontainer").style.overflow = "visible";
	    scrollTot = get$("feauteaux").offsetWidth - get$("divfotocontainer1").offsetWidth;
	    breedte = get$("feauteaux").offsetWidth;
	    get$("divfotocontainer1").style.overflow = "hidden";
	    get$("fotodivcontainer").style.overflow = "visible";
	}

	var scrollert = get$("fotodivcontainer");
	
	deTimert = setTimeout ("scrollRechts ()", 20);
	
	if (x < 0) {
		x += 5;
		width -= 5;
	}
	
	scrollert.style.left = x + "px";
	scrollert.style.width = (breedte + width) + "px";
}


function stopScroll () {
	
	clearTimeout (deTimert);
}


//-->

