// JavaScript Document

function pokazG(id, max) {
	var tab, data;
	for(var i = 1; i <= max; i++) {
		tab = document.getElementById('tabG' + i);
		title = document.getElementById('titleG' + i);
		if(i == id) {
			tab.style.visibility = 'visible';
			tab.style.display = 'block';
			title.style.color = '#1360AD';
		} else {
			tab.style.visibility = 'hidden';
			tab.style.display = 'none';
			title.style.color = '#000000';
		}
	}
	var a = document.getElementById('aGodziny');
	a.style.color = '#1360AD';
	a = document.getElementById('aFilmy');
	a.style.color = '#52595a';
}



function pokazF(id, max) {
	var tab, data;
	for(var i = 1; i <= max; i++) {
		tab = document.getElementById('tabF' + i);
		title = document.getElementById('titleF' + i);
		if(i == id) {
			tab.style.visibility = 'visible';
			tab.style.display = 'block';
			title.style.color = '#1360AD';
		} else {
			tab.style.visibility = 'hidden';
			tab.style.display = 'none';
			title.style.color = '#000000';
		}
	}
	var a = document.getElementById('aFilmy');
	a.style.color = '#1360AD';
	a = document.getElementById('aGodziny');
	a.style.color = '#52595a';
}



function pokazWg(nr) {
	var tab1 = document.getElementById('repGodziny');
	var tab2 = document.getElementById('repFilmy');
	if(nr == 1) {
		tab1.style.visibility = 'visible';
		tab1.style.display = 'block';
		tab2.style.visibility = 'hidden';
		tab2.style.display = 'none';
	} else {
		tab2.style.visibility = 'visible';
		tab2.style.display = 'block';
		tab1.style.visibility = 'hidden';
		tab1.style.display = 'none';
	}
}


