
var GB_ROOT_DIR = "http://www.detskybazar.cz/grafika/js/";




function staron(idd, i) {
var a=1;
while (a<i) 
{
var id = document.getElementById(idd+"_"+a);

id.setAttribute("class", "star_on");
id.setAttribute("className", "star_on");
a++;
}
return;
} 

function staroff(idd, i) {
var a=6;
while (i<a)
 {
var id = document.getElementById(idd+"_"+i);

id.setAttribute("class", "star_off");
id.setAttribute("className", "star_off");
i++;
}
return;
}

function alloff(idd) {
var a=5;
var i=1;
while (i<a)
 {
var id = document.getElementById(idd+"_"+i);

id.setAttribute("class", "star_off");
id.setAttribute("className", "star_off");
i++;
}
return;
}


