function show(id){
	document.getElementById(id).style.display = 'block';
}
function hide(id){
	document.getElementById(id).style.display = 'none';
}
function tab(id){
	hide('tab_jeden');
	hide('tab_dwa');
	hide('tab_trzy');
	document.getElementById('head_tab_jeden').className = 'tabheadernormal';
	document.getElementById('head_tab_dwa').className = 'tabheadernormal';
	document.getElementById('head_tab_trzy').className = 'tabheadernormal';
	show(id);
	document.getElementById('head_' + id).className = 'tabheaderactive';
}
function swiToA(){
	tab('tab_jeden');
	setTimeout("swiToB();", 10000);
}
function swiToB(){
	tab('tab_dwa');
	setTimeout("swiToC();", 10000);
}

function swiToC(){
	tab('tab_trzy');
	setTimeout("swiToA();", 10000);
}
setTimeout("swiToA();", 10000);

