<!--
	number = number-1;		
		
	function show(no_photos)
	{
		no_photos = no_photos-1;
		document.getElementById("no_pho_inp").value = no_photos;
		document.getElementById("photos_img").src = "fotogalerie/"+kategory+"/"+field_photos[no_photos]+"";
		document.getElementById("photos").style.display = "block";
	}
				
	function hide()
	{
		document.getElementById("photos").style.display = "none";
	}
			
	function right()
	{
		no_photos = document.getElementById("no_pho_inp").value*1+1;					
		if(no_photos>=number)
		{
	  		no_photos = number;						
		}
 		document.getElementById("photos_img").src = "fotogalerie/"+kategory+"/"+field_photos[no_photos]+"";
 		document.getElementById("no_pho_inp").value = no_photos;
	}
				
	function left() 
	{
		no_photos = document.getElementById("no_pho_inp").value*1-1;					
		if(no_photos<=-1)
		{
	  		no_photos = 0;
		}
 		document.getElementById("photos_img").src = "fotogalerie/"+kategory+"/"+field_photos[no_photos]+"";
 		document.getElementById("no_pho_inp").value = no_photos;		
	}
// -->
