
tolesnės dozės: reguliariai kas 1/2 dienos - 10/20 ml kiekvienam 1 m3 vandens Dezinfekcijos metodas:
Išmatuotą kiekį sumaišykite kibire su nedideliu kiekiu vandens įpilkite vandens iki pilnos masės ir išmaišykite,
supilkite visą kibiro turinį į šulinį,
šulinyje esantis vanduo turi būti sumaišytas - naudojant pvz., stulpą arba pripildant ir supilant vandenį atgal į šulinį, naudojant kibirą
po 24 valandų – pasirinkite arba pumpuokite vandenį iš šulinio, kol išnyks chloro kvapas.

t.classList.toggle('selected', i === idx));
// read correct data-attribute
const newSrc = thumbnails[idx].getAttribute('data-image-large-src');
mainImage.src = newSrc;
currentIndex = idx;
}
// 3) left arrow click
arrowLeft?.addEventListener('click', () => {
const prev = (currentIndex - 1 + thumbnails.length) % thumbnails.length;
updateMainImage(prev);
});
// 4) right arrow click
arrowRight?.addEventListener('click', () => {
const next = (currentIndex + 1) % thumbnails.length;
updateMainImage(next);
});
// 5) Left/Right key on the keyboard
document.addEventListener('keydown', (event) => {
if (event.key === 'ArrowLeft') {
const prevKey = (currentIndex === 0)
? thumbnails.length - 1
: currentIndex - 1;
updateMainImage(prevKey);
} else if (event.key === 'ArrowRight') {
const nextKey = (currentIndex === thumbnails.length - 1)
? 0
: currentIndex + 1;
updateMainImage(nextKey);
}
});
// 6) initialize first image
updateMainImage(0);
})();