function starStars(no) {
  for (i=1; i<=5;i++) {
    if (document.getElementById('star_'+i)) {
      star = document.getElementById('star_'+i);
      if (i<=no) star.className = 'hvezdicka-aktivni';
      else star.className = 'hvezdicka';
    }
  }
}
