//funkcja zamienia kolor tła podczas najeżdżania
function zamiana_tla(x, y)
{ 
if(x==1)
	{
		y.style.backgroundColor='#d7dfcc';
	}
else if(x==2)
	{
		y.style.backgroundColor='#ecebeb';
	}
}

//funkcje podmieniają obrazki podczas najeżdżania
function MenuOn(x, y){
x.src=y;}

function MenuOff(x, y){
x.src=y;}

//funkcja okienka pop-up w galerii zdjęć
function okno(adres,width, height)
{ 
if (height>screen.height-40)
{
	height=screen.height-40;
	scrollbars='yes';
}
else
	scrollbars='no';

window.open(adres,'','width=' + width + ',height=' + height + ', menubar=no, toolbar=no, location=no, scrollbars=' + scrollbars + ', resizable=no, status=no, left=0, top=0 ') 
}