window.onLoad = moveSlides();
current_x = 0;

stopPoint = 0-divWidth+document.getElementById("slide_show").offsetWidth;

function moveSlides() {
	slideSpeed = 50;
	slideMover = setInterval("slideStep()", slideSpeed);
	document.getElementById("slide_holder").style.width=divWidth+"px";
}


function slideStep() {
	document.getElementById("slide_holder").style.left=current_x+"px";
	current_x=current_x-2;
	
	if (current_x < stopPoint) current_x=0;
}
