//menu

MaxGraf=3		//liczba grafik
MaxStan=2
obrazki=new Array(MaxGraf*MaxStan)
nazwy=new Array(MaxGraf*MaxStan)
next=0

dodaj_grafike("m1","img/menu1_")
dodaj_grafike("m2","img/menu2_")
dodaj_grafike("m3","img/menu3_")

function dodaj_grafike(nazwa,plik){
	var a
	for (a=0;a<MaxStan;a++){
		nazwy[next]=new String()
		nazwy[next]=nazwa+a
		obrazki[next]=new Image()
		obrazki[next++].src=plik+a+".gif"
		}
}

function pstryk(nazwa,stan){
	var i
	for (i=0;nazwa+stan!=nazwy[i];i++);
        document.images[nazwa].src = obrazki[i].src
}

function openPic(file, h, w){
	picWindow=window.open("openPic.php?img_src=" + file,"","toolbar=0,menubar=0,location=0,directories=0,status=0,resizable=0,scrollbars=0,titlebar=0,width=" + w + ",height=" + h + ",left=450,top=250");
}
function openGal(file, alt, h, w){
	picWindow=window.open("openGal.php?img_src=" + file + "&img_desc=" + alt,"","toolbar=0,menubar=0,location=0,directories=0,status=0,resizable=0,scrollbars=0,titlebar=0,width=" + w + ",height=" + h + ",left=250,top=50");
}

