/*startList = function() {
      if (document.all&&document.getElementById) {
            navRoot = document.getElementById("nav");
            for (i=0; i<navRoot.childNodes.length; i++) {
                  node = navRoot.childNodes[i];
                  if (node.nodeName=="LI") {
                        node.onmouseover=function() {
                              this.className+=" hover";
                        }
                        node.onmouseout=function() {
                              this.className=this.className.replace(" hover", "");
                        }
                  }
            }
      }
}
window.onload=startList;*/


$(document).ready(function(){

    $("a[rel=group]").fancybox({
        'titleShow':false,
        'cyclic':true,
        'centerOnScroll':true
    });

    $("a.relimg").fancybox({
        'titleShow':false,
        'centerOnScroll':true
    });

    $("a#imgShow").fancybox({
		'hideOnContentClick': true
	});

    //alert();
    $('#nav li').hover(function() { $(this).addClass('hover');}, function() { $(this).removeClass('hover');});
    $('li.podpunkt1').hover(function() { $('ul',this).css('visibility','visible');}, function() {$('ul',this).css('visibility','hidden');});
});

