// JavaScript Document
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("top");
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", "");
   }
   }
  }
 }
if (document.all&&document.getElementById) {
navRoot3 = document.getElementById("horny_kontakt");
for (i=0; i<navRoot3.childNodes.length; i++) {
node3 = navRoot3.childNodes[i];
if (node3.nodeName=="LI") {
node3.onmouseover=function() {
this.className+=" uber";
  }
  node3.onmouseout=function() {
  this.className=this.className.replace>
	(" uber", "");
   }
   }
  }
 }
if (document.all&&document.getElementById) {
navRoot2 = document.getElementById("form_ukazka");
for (i=0; i<navRoot2.childNodes.length; i++) {
node2 = navRoot2.childNodes[i];
if (node2.nodeName=="LI") {
node2.onmouseover=function() {
this.className+=" cez";
  }
  node2.onmouseout=function() {
  this.className=this.className.replace>
	(" cez", "");
   }
   }
  }
 }
}
window.onload=startList;