	        <!-- original code by mr.a -- http://www.mr-a.hu -->
		function startList(mit) {
			if (document.all&&document.getElementById) {
				navRoot = document.getElementById(mit);
				for (i=0; i<navRoot.childNodes.length; i++) {
					node = navRoot.childNodes[i];
					if (node.nodeName=="LI") {
						node.onmouseover=function() {
							this.className+=" over";
						}
						node.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}

                function startList2() {
                  startList("menu");
//                   startList("menu_modszertani");
                }

		window.onload=startList2;

		function csere(mit) {
		  document.getElementById('titleimg').src = 'template/images/title_'+mit+'.gif';
		}
		
		function Nyomtat(url) {
                  printwin = window.open(url,'printwin','width=750,height=550,toolbar=no,status=no,scrollbars=yes');
                  var xc =(screen.width - 750) / 2;
                  var yc =(screen.height - 520) / 2;
                  printwin.moveTo(xc, yc);
                }

		function jump(o, x) { document.location.href = o+x.options[x.selectedIndex].value; }

                function submitenter(myfield,e)
                {
                var keycode;
                if (window.event) keycode = window.event.keyCode;
                else if (e) keycode = e.which;
                else return true;
                
                if (keycode == 13)
                   {
                   myfield.form.submit();
                   return false;
                   }
                else
                   return true;
                }
                
                function on(mi)   { mi.style.backgroundColor='#E1EEFA'; }
                function off(mi)  { mi.style.backgroundColor='#FFFFFF'; }

