function showSlideImage() {
	var livePageWidth = findLivePageWidth();
	
	for (i=1;i<=numberPic;i++) {
		photoId = "photo"+i;
		getObject = document.getElementById(photoId);
		getObject.style.visibility = "hidden";
		if (imgLeft[i]<toLeft) {
			if ((imgLeft[i]+slideImageWidth)>toLeft) {
				different = toLeft - imgLeft[i];
				imgClip = "rect(0px 220px 150px "+ different +"px)";
				getObject.style.clip = imgClip;
				getObject.style.left = imgLeft[i]+"px";
				getObject.style.visibility = "visible";
				}
			}
		 else {
		 	if (imgLeft[i]<livePageWidth) {
				if ((imgLeft[i]+slideImageWidth)>livePageWidth) {
					different = livePageWidth - imgLeft[i];
					imgClip = "rect(0px "+ different +"px 150px 0px)";
					getObject.style.clip = imgClip;
					getObject.style.left = imgLeft[i]+"px";
					getObject.style.visibility = "visible";
					}
				 else {
				 	imgClip = "rect(0px 220px 150px 0px)";
					getObject.style.clip = imgClip;
					getObject.style.left = imgLeft[i]+"px";
					getObject.style.visibility = "visible";
				 	}
				}
		 	}
		}
	}
function runStrip() {
	for (i=1;i<=numberPic;i++) {
		imgLeft[i] = imgLeft[i]-5;
		if (imgLeft[i]<(toLeft- slideImageWidth)) {
			imgLeft[i] = (numberPic-1)*slideImageWidth;
			}
		}
	showSlideImage();
	setTimeout("runStrip()",200);
	}
