﻿<!--

var deTimert;
var x = width = 0;

function scrollLinks () {
	var scrollert = document.getElementById ("fotodivcontainer");
	
	deTimert = setTimeout ("scrollLinks ()", 50);
	
	if (-x < document.getElementById("feauteaux").offsetWidth - 655) {
	x -= 5;
	width += 5;
	}
	
	scrollert.style.left = x + "px";
	scrollert.style.width = (655 + width) + "px";
}


function scrollRechts () {
	var scrollert = document.getElementById ("fotodivcontainer");
	
	deTimert = setTimeout ("scrollRechts ()", 50);
	
	if (x < 0) {
		x += 5;
		width -= 5;
	}
	
	scrollert.style.left = x + "px";
	scrollert.style.width = (655 + width) + "px";
}


function stopScroll () {
	
	clearTimeout (deTimert);
}


//-->

