// JavaScript Document
function OpenNewWindow(src, width, height) {
	window.open(src, 'newWin', 'width='+width+', height='+height+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, top=0, left=150');
}

function ZmenObr(cesta, obr) {
	document.images[obr].src=cesta;
}

function Inicializuj() {
	if (navigator.appName == 'Netscape') {
		document.getElementById('menu').className = "menu_moz";
		document.getElementById('obsah').className = "obsah_moz";
	} else {
		document.getElementById('menu').className = "menu_mso";
		document.getElementById('obsah').className = "obsah_mso";
	}
}

function ZmenViditelnost(id) {
	if ($('#'+id).is(":hidden")) {
		$('#'+id).slideDown("slow");
	} else {
		$('#'+id).slideUp("slow");
	}
}
