function switchPage(ids,id) {
	for (i=0;i<ids.length;i++) {
		with (document.getElementById(ids[i]).style) {
			if (ids[i]==id) {
				display='';
			} else {
				display='none';
			}
		}
	}
}

top.timerID=new Array();

function menuToggleItem(id) {
	with (document.getElementById(id).style) {
		if (display=='') { 
			display='none';
		} else {
			display='';
		}
	}
}

function menuShowItem(id) {
	document.getElementById(id).style.display='';
	
	if (top.timerID[id]) clearTimeout(top.timerID[id]);
}

function menuHideItem(id) {
	document.getElementById(id).style.display='none';
}

function menuHideItemDelayed(id,delay) {
	top.timerID[id]=setTimeout('menuHideItem(\''+id+'\')',delay);
	
}

function menuSetClass(el,cl) {
	el.className=cl;
}

function Tisk() {
	window.print();
}
