<!--
var ntop = 0;
var nheight = 0;

if (document.getElementById('trzymacz')) findPos(document.getElementById('trzymacz'))
var trzymacz = ntop;

function findPos(obj) {
	if (obj.offsetParent) {
		ntop = obj.offsetTop;
		nheight = obj.offsetHeight;
		while (obj = obj.offsetParent) {
			ntop += obj.offsetTop;
		}
	}
}

function grr() {
	findPos(document.getElementById('lewo'));
	var lewo = nheight;
	findPos(document.getElementById('tresc'));
	var tresc = nheight;
	if (tresc >= lewo) document.getElementById('lewo').style.height = tresc+ "px";
}
function grr2() {
	findPos(document.getElementById('lewo'));
	var lewo = nheight;
	findPos(document.getElementById('tresc'));
	var tresc = nheight;
	if (tresc >= lewo) document.getElementById('lewo').style.height = tresc+ "px";
	//document.getElementById('lewo').style.backgroundColor = 'black';
	//alert(document.getElementById('lewo').style.height);
}

if (document.getElementById('wybor')) {

	var ms = 0
	var rdr = 0
	var dar = document.getElementById('wybor').getElementsByTagName('th');
	var dr = document.getElementById('uslugi').getElementsByTagName('div');
	
	for(var i=0; i<dar.length; i++) {
		dar[i].pnum = i;
		
		dar[i].onmouseover = function () {
			for(var j=0;j<dar.length;j++) {
				dar[j].style.backgroundColor = '#9D7F59';
				dar[j].style.backgroundImage = 'url(graf/czk-wybor1.gif)';
			}
			this.style.backgroundColor = '#472303';
			this.style.backgroundImage = 'url(graf/czk-wybor4.gif)';
			findPos(this)
			if (ntop - trzymacz > 0) {
				document.getElementById('suwak').style.height = ntop-trzymacz+ 'px';
			} else {
				document.getElementById('suwak').style.height = '5px';
			}
		}
		
		dar[i].onmouseout = function () {
			this.style.backgroundColor = '#9D7F59';
			this.style.backgroundImage = 'url(graf/czk-wybor1.gif)';
			dar[ms].style.fontWeight = 'bold';
			dar[ms].style.backgroundColor = '#472303';
			dar[ms].style.backgroundImage = 'url(graf/czk-wybor4.gif)';
			if (rdr - trzymacz > 0) {
				document.getElementById('suwak').style.height = rdr-trzymacz+ 'px';
			} else {
				document.getElementById('suwak').style.height = '5px';
			}
		}
		
		dar[i].onclick = function () {
			ms = this.pnum;
			for(var j=0;j<dr.length;j++) {
				dr[j].style.display = 'none';
				dar[j].style.fontWeight = 'normal';
			}
			dr[ms].style.display = 'block';
			this.style.fontWeight = 'bold';
			findPos(dar[ms]);
			rdr = ntop;
		}
	}
}

var menudr = document.getElementById('menu').getElementsByTagName('div');
for(var i=0; i<menudr.length; i++) {
	menudr[i].onmouseover = function () {
		this.style.backgroundColor = '#492201';
		this.getElementsByTagName('a')[0].style.color = '#FFFFFF';
	}
	menudr[i].onmouseout = function () {
		this.style.backgroundColor = '#DEC59C';
		this.getElementsByTagName('a')[0].style.color = '#2B1400';
	}
}

var gile = 0;
var god = 0;

if (document.getElementById('galeryjka')) {
	var obrazdr = document.getElementById('galeryjka').getElementsByTagName('span');
	for(var i=0; i<obrazdr.length; i++) {
		obrazdr[i].onclick = function () {
			if (this.className == 'gobraz') {
				document.getElementById('obrazek').src = this.getElementsByTagName('img')[0].src.replace('mini', 'maxi');
				document.getElementById('podpis').innerHTML = this.getElementsByTagName('img')[0].getAttribute('alt');
				document.location = '#poczatek';
				grr2();
			};
			if (this.className == 'gfolder') {
				document.location = this.id+ '.html#poczatek';
				document.getElementById('podpis').innerHTML = this.getElementsByTagName('img')[0].getAttribute('alt');
			} 
		}
	}
	document.getElementById('gwio').onclick = function () {
		if (gile+1 < obrazdr.length) {
			gile++;
			document.getElementById('obrazek').src = document.getElementById('galeryjka').getElementsByTagName('img')[gile].src.replace('mini', 'maxi');;
			document.getElementById('podpis').innerHTML = document.getElementById('galeryjka').getElementsByTagName('img')[gile].getAttribute('alt');
			document.location = '#poczatek';
		}
	}
	document.getElementById('gnazad').onclick = function () {
		if (gile-1 > god) {
			gile--;
			document.getElementById('obrazek').src = document.getElementById('galeryjka').getElementsByTagName('img')[gile].src.replace('mini', 'maxi');;
			document.getElementById('podpis').innerHTML = document.getElementById('galeryjka').getElementsByTagName('img')[gile].getAttribute('alt');
			document.location = '#poczatek';
		}
	}
}


-->

