function textsize (i) {
	mt = document.getElementById('maintext');
	f = document.getElementById('fonts');
	c = ' ';
	for (n=0;n<3;n++) {
		f.childNodes[n].className = f.childNodes[n].className.replace(/ act/,'');
		if (n == i-1) f.childNodes[n].className += ' act';
		if (n < i) c += 'a';
	}
	mt.className = mt.className.replace(/ a{0,3}/,c);
}
function search_hint () {
	f = document.getElementById('szukaj');
	if (f.firstChild.value == 'wpisz tekst aby wyszukać') f.firstChild.value = '';
}
function sw_realizacje (i) {
	for (n=1;document.getElementById('realizacja'+n);n++) {
		r = document.getElementById('realizacja'+n);
		if (r.className.match(/ act/)) {
			r.className = r.className.replace(/ act/,'');
			if (document.getElementById('realizacja'+(n+i))) {
				document.getElementById('realizacja'+(n+i)).className += ' act';
				return;
			} else {
				if (i>0) {
					document.getElementById('realizacja1').className += ' act';
					return;
				}
			}
		}
	}
	if (i<0) {
		document.getElementById('realizacja'+(n-1)).className += ' act';
	}
}