var slideItems = 5;//this is where you change to mumber of images you slide each time
		
var distEach = 166;
var step = 0

function slideFilmStrip(direction, items){
    
	document.getElementById("filmstripTable").style.left = document.getElementById("filmstripTable").offsetLeft;
	var left = parseInt(document.getElementById("filmstripTable").style.left)
	if ((step <= distEach*slideItems)&&(!((left>0)||(left<-((items-7)*distEach))))){
	
			document.getElementById("filmstripTable").style.left = (left + direction*slideItems*2) + "px"; 
			step = step + slideItems*2
			my_timeout = setTimeout("slideFilmStrip("+direction+","+ items + ")", 1);
	}else{
		document.getElementById("filmstripTable").style.left = (left - direction*slideItems*2) + "px";
		step = 0;
	}

}
function rollOverItem(obj, status){
	if (status == true){
		obj.firstChild.className = "filmstripImgBig";
		obj.lastChild.className = "filmstripCapBig";
		document.getElementById("filmstripTable").style.left = document.getElementById("filmstripTable").offsetLeft;
		
	}else {
		obj.firstChild.className = "filmstripImg";
		obj.lastChild.className = "filmstripCap";
		document.getElementById("filmstripTable").style.left = document.getElementById("filmstripTable").offsetLeft;
	}
}