
	var photos=new Array();
	var which=0;

	/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
	photos[0] = "../ImgChiSiamo/Interno1.jpg";
	photos[1] = "../ImgChiSiamo/Interno2.jpg";
	photos[2] = "../ImgChiSiamo/Interno3.jpg";
	photos[3] = "../ImgChiSiamo/Interno4.jpg";
	photos[4] = "../ImgChiSiamo/Interno5.jpg";
	photos[5] = "../ImgChiSiamo/Interno6.jpg";

	function backward()
	{
		if (which > 0)
		{
			which--;
			document.images.photoslider.src = photos[which];
			document.rotater.Pos.value = 'Foto ' + (which + 1) + ' di ' + photos.length;
		}
	}

	function forward()
	{
		if (which < photos.length-1)
		{
			which++;
			document.images.photoslider.src = photos[which];
			document.rotater.Pos.value = 'Foto ' + (which + 1) + ' di ' + photos.length;
		}
	}
