
		var currentImage = 0;
		var totalImages = 15;
		var viewSize = 3;
		
		function moveToPrevious()
		{
			if(currentImage > 0)
			{
				new Effect.Move('imageBoxInside', { x: 97, y: 0, transition: Effect.Transitions.sinoidal });
				currentImage--;
			}
			
			else
			{
				new Effect.Move('imageBoxInside', { x: -1164, y: 0, transition: Effect.Transitions.sinoidal });
				movesize = 12;
				currentImage = (currentImage + movesize);
			}

		}
		
		function moveToNext()
		{
		
			if(currentImage == 12)
			{
				new Effect.Move('imageBoxInside', { x: 1164, y: 0, transition: Effect.Transitions.sinoidal });
				movesize = 12;
				currentImage = (currentImage - movesize);
			}
			
			else if(currentImage < totalImages-viewSize)
			{
				new Effect.Move('imageBoxInside', { x: -97, y: 0, transition: Effect.Transitions.sinoidal });
				currentImage++;
				//alert(currentImage)
			}
		  
		}
		