
	var photos_3=new Array();
	var which_3=0;

	/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
	photos_3[0] = "../ImgAttivita/Serra1.jpg";
	photos_3[1] = "../ImgAttivita/Serra2.jpg";
	photos_3[2] = "../ImgAttivita/Serra3.jpg";
	photos_3[3] = "../ImgAttivita/Serra4.jpg";
	photos_3[4] = "../ImgAttivita/Serra5.jpg";
	photos_3[5] = "../ImgAttivita/Serra6.jpg";
	photos_3[6] = "../ImgAttivita/Serra7.jpg";
	photos_3[7] = "../ImgAttivita/Serra8.jpg";
	photos_3[8] = "../ImgAttivita/Serra9.jpg";



	function backward_3()
	{
		if (which_3 > 0)
		{
			which_3--;
			document.images.photoslider_3.src = photos_3[which_3];
			document.rotater_3.Pos1.value = 'Foto ' + (which_3 + 1) + ' di ' + photos_3.length;
		}
	}

	function forward_3()
	{
		if (which_3 < photos_3.length-1)
		{
			which_3++;
			document.images.photoslider_3.src = photos_3[which_3];
			document.rotater_3.Pos1.value = 'Foto ' + (which_3 + 1) + ' di ' + photos_3.length;
		}
	}