// JavaScript Document
	var currentImage = 0;
	var totalImages = 200;
	var viewSize = 1;
	
	function moveToPrevious(){
  	if(currentImage > 0){
    new Effect.Move('imageBoxInside', { x: 360, y: 0, transition: Effect.Transitions.sinoidal });
    currentImage--;
  	}
		}

	function moveToNext(){
  	if(currentImage < totalImages-viewSize){
    new Effect.Move('imageBoxInside', { x: -360, y: 0, transition: Effect.Transitions.sinoidal });
    currentImage++;
  	}
		}
