dane=new Array();
for (i=0; i<14; i++) {dane[i]=new Image;}
dane[0].src='img/bobasek_off.gif';dane[1].src='img/bobasek_on.gif';
dane[2].src='img/maluszek_off.gif';dane[3].src='img/maluszek_on.gif';
dane[4].src='img/chlopczyk_off.gif';dane[5].src='img/chlopczyk_on.gif';
dane[6].src='img/chlopak_off.gif';dane[7].src='img/chlopak_on.gif';
dane[8].src='img/facet_off.gif';dane[9].src='img/facet_on.gif';
dane[10].src='img/_off.gif';dane[11].src='img/_on.gif';
dane[12].src='img/_off.gif';dane[13].src='img/_on.gif';

function myszover(numer1)
{
place='rys'+numer1;
document.getElementById(place).src=dane[numer1].src;
}
function myszout(numer2)
{
dodaj=numer2+1;
place='rys'+dodaj;
document.getElementById(place).src=dane[numer2].src;
}
