<!--
// PHP Layers Menu 3.1.0 (C) 2001-2003 Marco Pratesi (marco at telug dot it)

DOM = (document.getElementById) ? 1 : 0;
NS4 = (document.layers) ? 1 : 0;
// We need to explicitly detect Konqueror
// because Konqueror 3 sets IE = 1 ... AAAAAAAAAARGHHH!!!
Konqueror = (navigator.userAgent.indexOf("Konqueror") > -1) ? 1 : 0;
// We need to detect Konqueror 2.2 as it does not handle the window.onresize event
Konqueror22 = (navigator.userAgent.indexOf("Konqueror 2.2") > -1 || navigator.userAgent.indexOf("Konqueror/2.2") > -1) ? 1 : 0;
Opera = (navigator.userAgent.indexOf("Opera") > -1) ? 1 : 0;
Opera5 = (navigator.userAgent.indexOf("Opera 5") > -1 || navigator.userAgent.indexOf("Opera/5") > -1) ? 1 : 0;
Opera6 = (navigator.userAgent.indexOf("Opera 6") > -1 || navigator.userAgent.indexOf("Opera/6") > -1) ? 1 : 0;
Opera56 = Opera5 || Opera6;
IE = (navigator.userAgent.indexOf("MSIE") > -1) ? 1 : 0;
IE = IE && !Opera;
IE5 = IE && DOM;
IE4 = (document.all) ? 1 : 0;
IE4 = IE4 && IE && !DOM;

// -->

<!--

menuTopShift = 6;
menuRightShift = 7;
menuLeftShift = 2;

var thresholdY = 5;
var abscissaStep = 140;

toBeHidden = new Array();
toBeHiddenLeft = new Array();
toBeHiddenTop = new Array();

listl = ['L1','L8','L13','L22','L27','L33'];
var numl = listl.length;

father = new Array();
for (i=1; i<=37; i++) {
	father["L" + i] = "";
}
father_keys = ['L2','L3','L4','L5','L6','L7','L9','L10','L11','L12','L14','L15','L16','L17','L18','L19','L20','L21','L23','L24','L25','L26','L28','L29','L30','L31','L32','L34','L35','L36','L37'];
father_vals = ['L1','L1','L1','L1','L1','L8','L8','L8','L8','L8','L8','L13','L13','L13','L13','L13','L13','L22','L22','L22','L22','L27','L27','L27','L27','L27','L27','L33','L33','L33','L33'];
for (i=0; i<father_keys.length; i++) {
	father[father_keys[i]] = father_vals[i];
}

lwidth = new Array();
var lwidthDetected = 0;

function moveLayers() {
	if (!lwidthDetected) {
		for (i=0; i<numl; i++) {
			lwidth[listl[i]] = getOffsetWidth(listl[i]);
		}
		lwidthDetected = 1;
	}
	if (IE4) {
		for (i=0; i<numl; i++) {
			setWidth(listl[i], abscissaStep);
		}
	}
	var top_menuTOP = getOffsetTop('top_menuL1');
	var top_menuHEIGHT = getOffsetHeight('top_menuL1');
	//posun o 5 dolu
	top_menuHEIGHT = top_menuHEIGHT + 3;
	setTop('L1', top_menuTOP + top_menuHEIGHT);
	moveLayerX1('L1', 'top_menu');
	setTop('L8', top_menuTOP + top_menuHEIGHT);
	moveLayerX1('L8', 'top_menu');
	setTop('L13', top_menuTOP + top_menuHEIGHT);
	moveLayerX1('L13', 'top_menu');
	setTop('L22', top_menuTOP + top_menuHEIGHT);
	moveLayerX1('L22', 'top_menu');
	setTop('L27', top_menuTOP + top_menuHEIGHT);
	moveLayerX1('L27', 'top_menu');
	setTop('L33', top_menuTOP + top_menuHEIGHT);
	moveLayerX1('L33', 'top_menu');

}

back = new Array();
for (i=1; i<=27; i++) {
	back["L" + i] = 0;
}

// -->