
// Galeria START
//
var Onerotate_delay	= 4000; // rotacja -> 4000 = 4 sekundy
Onecurrent		= 0;

var OneLinks	= new Array(3);
OneLinks[0]	= "index.php";
OneLinks[1]	= "index.php";
OneLinks[2]	= "index.php";
OneLinks[3]	= "index.php";
OneLinks[4]	= "index.php";
OneLinks[5]	= "index.php";

function NextPhoto()
{
	if( document.PhotoForm.SelectPhoto[Onecurrent+1] )
	{
		document.images.PhotoSrc.src = document.PhotoForm.SelectPhoto[Onecurrent+1].value;
		document.getElementById('PhotoName').innerHTML = document.PhotoForm.SelectPhoto[Onecurrent+1].text;
		document.PhotoForm.SelectPhoto.selectedIndex = ++Onecurrent;
	}
	else
	{
		FirstPhoto();
	}
}
function PrevPhoto()
{
	if( Onecurrent-1 >= 0 )
	{
		document.images.PhotoSrc.src = document.PhotoForm.SelectPhoto[Onecurrent-1].value;
		document.getElementById('PhotoName').innerHTML = document.PhotoForm.SelectPhoto[Onecurrent-1].text;
		document.PhotoForm.SelectPhoto.selectedIndex = --Onecurrent;
	}
	else
	{
		LastPhoto();
	}
}
function FirstPhoto()
{
	Onecurrent = 0;
	document.images.PhotoSrc.src = document.PhotoForm.SelectPhoto[0].value;
	document.getElementById('PhotoName').innerHTML = document.PhotoForm.SelectPhoto[0].text;
	document.PhotoForm.SelectPhoto.selectedIndex = 0;
}
function LastPhoto()
{
	Onecurrent = document.PhotoForm.SelectPhoto.length-1;
	document.images.PhotoSrc.src = document.PhotoForm.SelectPhoto[Onecurrent].value;
	document.getElementById('PhotoName').innerHTML = document.PhotoForm.SelectPhoto[Onecurrent].text;
	document.PhotoForm.SelectPhoto.selectedIndex = Onecurrent;
}
function ChangePhoto()
{
	Onecurrent = document.PhotoForm.SelectPhoto.selectedIndex;
	document.images.PhotoSrc.src = document.PhotoForm.SelectPhoto[Onecurrent].value;
	document.getElementById('PhotoName').innerHTML = document.PhotoForm.SelectPhoto[Onecurrent].text;
}
function StartGallery()
{
	Onecurrent = (Onecurrent == document.PhotoForm.SelectPhoto.length-1) ? 0 : Onecurrent+1;
	document.images.PhotoSrc.src = document.PhotoForm.SelectPhoto[Onecurrent].value;
	document.getElementById('PhotoName').innerHTML = document.PhotoForm.SelectPhoto[Onecurrent].text;
	document.PhotoForm.SelectPhoto.selectedIndex = Onecurrent;
	window.setTimeout("StartGallery()", Onerotate_delay);
}
function PhotoURI()
{
	window.location=OneLinks[Onecurrent]
}

//
// Galeria END

// Dodaj do ulubionych START
//

function addToFavorite()
{
	var tytul = 'Zanzibar';
	var adres = 'http://www.zanzi.pl';
	
	//FireFox
	if( window.sidebar )
	{
		window.sidebar.addPanel(tytul, adres, "");
	//IE
	} else if( window.external ) {
		window.external.AddFavorite(adres, tytul);
	//Opera
	} else if( window.opera && window.print ) {
		var a = document.createElement('a');
		a.setAttribute('href', adres);
		a.setAttribute('title', tytul);
		a.setAttribute('rel','sidebar');
		a.click();
	}
}

//
// Dodaj do ulubionych END

// Ustaw jako startowa START
//

function setAsStart()
{
	alert('h');	
}

//
// Ustaw jako startowa END
