/* 
Main menu
Last change 4.9.2005 15:37:48
*/


var ie = (navigator.appName=='Microsoft Internet Explorer' && !window.opera);


function getId(id) 
{
	if (!document.getElementById) return false;
	return document.getElementById(id);
}

function mainmenu() 
{
	var mainmenu, li;
	if( !ie || !(mainmenu = getId('mainmenu')) ) return;
	li = mainmenu.getElementsByTagName('li');		
	for (var i=0; i<li.length; i++) {
		li[i].onmouseover = function() {
			this.className+=' hover';
			this.firstChild.className +=' submenuIsOn'; // odkaz 'nadpis' bude take podsvicen
		}
		li[i].onmouseout = function() {
			this.className = this.className.replace('hover','');
			this.firstChild.className = this.firstChild.className.replace('submenuIsOn','');
		}
	}
}

function prodmenu() 
{
	var prodmenu, li;
	if( !ie || !(prodmenu = getId('prodmenu')) ) return;
	li = prodmenu.getElementsByTagName('div');		
	for (var i=0; i<li.length; i++) {
		li[i].onmouseover = function() {
			this.className ='boxhover';		
			this.firstChild.className +=' submenuIsOn'; // odkaz 'nadpis' bude take podsvicen
		}
		li[i].onmouseout = function() {
			this.className = this.className.replace('hover','');
			this.firstChild.className = this.firstChild.className.replace('submenuIsOn','');
		}
	}
}


window.onload = mainmenu;
window.onload = prodmenu;

