
var START = 'http://www.sekstuba.pl/';

var oceny = new Array();

function zgas()
{
   for (var i = 0; i < 5; i++)
      oceny[i].src = START+'img/pusta.gif';
}

function zaswiec(numer)
{   
   zgas();
   for (var i = 0; i < numer; i++)         
      oceny[i].src = START+'img/pelna.gif';
   
}



window.onload = function()
{
   oceny[0] = document.getElementById('ocen1');
   oceny[1] = document.getElementById('ocen2');
   oceny[2] = document.getElementById('ocen3');
   oceny[3] = document.getElementById('ocen4');
   oceny[4] = document.getElementById('ocen5');
}
