function mouseOver_ (nazwa)
{
var txt=nazwa.name;
if (nazwa.src.indexOf ((txt + "_STD.gif")) != -1)
		{nazwa.src="../images/" + txt + "_STD_HOV.gif"}
		else
		{nazwa.src="../images/" + txt + "_SEL_HOV.gif"}
}

function mouseOut_ (nazwa)
{
var txt=nazwa.name;
if (nazwa.src.indexOf ((txt + "_STD_HOV.gif")) != -1)
		{
		nazwa.src="../images/" + txt + "_STD.gif";
		return;
		}
if (nazwa.src.indexOf ((txt + "_SEL_HOV.gif")) != -1)
		{
		nazwa.src="../images/" + txt + "_SEL.gif";
		return;
		}
}

function Click_ (nazwa)
{
for (var i=0; i != document.images.length; i++)
	{
	if ((document.images[i].src.indexOf ("_SEL")) != -1)
		{
		document.images[i].src=Nazwy_STD[i];
		}
	}
Inverse_ (nazwa);
}

function Inverse_ (nazwa)
{
var txt=nazwa.name;
if (nazwa.src.indexOf ((txt + "_STD")) == -1)
		{nazwa.src="../images/" + txt + "_STD_HOV.gif"}
		else
		{nazwa.src="../images/" + txt + "_SEL_HOV.gif"}
}

function Zapamietaj_STD ()
{
Nazwy_STD = new Array (document.images.length);
for (var i=0; i != document.images.length; i++)
	{
	Nazwy_STD[i]=document.images[i].src;
	}
}

