glowna_on = new Image();
glowna_off = new Image();
glowna_on.src = './../img/glowna_on.gif';
glowna_off.src = './../img/glowna_off.gif';

rekolekcje_on = new Image();
rekolekcje_off = new Image();
rekolekcje_on.src = './../img/rekolekcje_on.gif';
rekolekcje_off.src = './../img/rekolekcje_off.gif';

goscie_on = new Image();
goscie_off = new Image();
goscie_on.src = './../img/goscie_on.gif';
goscie_off.src = './../img/goscie_off.gif';

informacje_on = new Image();
informacje_off = new Image();
informacje_on.src = './../img/informacje_on.gif';
informacje_off.src = './../img/informacje_off.gif';

poziomy_on = new Image();
poziomy_off = new Image();
poziomy_on.src = './../img/poziomy_on.gif';
poziomy_off.src = './../img/poziomy_off.gif';

ludzie_on = new Image();
ludzie_off = new Image();
ludzie_on.src = './../img/ludzie_on.gif';
ludzie_off.src = './../img/ludzie_off.gif';

zgloszenia_on = new Image();
zgloszenia_off = new Image();
zgloszenia_on.src = './../img/zgloszenia_on.gif';
zgloszenia_off.src = './../img/zgloszenia_off.gif';

historia_on = new Image();
historia_off = new Image();
historia_on.src = './../img/historia_on.gif';
historia_off.src = './../img/historia_off.gif';

mapa_on = new Image();
mapa_off = new Image();
mapa_on.src = './../img/mapa_on.gif';
mapa_off.src = './../img/mapa_off.gif';
function aktywacja(img) {
  imgsrc = eval(img + '_on.src');
  document[img].src = imgsrc;
}

function deaktywacja(img) {
  imgsrc = eval(img + "_off.src");
  document[img].src = imgsrc;
}