function insertVisual(lang) {
	document.write('<object type="application/x-shockwave-flash" data="highlight-02.swf" width="100%" height="175" id="highlight-02"><param name="movie" value="highlight-02.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="bgcolor" value="#FFF" /><param name="allowScriptAccess" value="sameDomain" /><param name="FlashVars" value="xmlUrl=hl_xml.aspx?lang='+lang+'" />');
	document.write('<div id="bg"><div id="alt" onmouseover="this.className = \'aover\'" onmouseout="this.className = \'\'"><img src="/img/vizual/'+lang+'/01.jpg" height="160" width="1080" alt="" id="altbig"/><div id="aover"><img src="/img/vizual/'+lang+'/01_over.jpg" height="175" width="315" alt="" id="altover" /><a href="/ekonomika/article_detail.aspx?id=1991" id="visdetail"><span>více</span></a><a href="javascript:void(visual.next())" id="visnext"><span>další téma</span></a></div></div></div>');
	document.write('</object>');
}

var activeSub = null;
var menuTimeout = null;

function initMenuSub() {
	if (document.getElementById && document.getElementById("menu-sub")) {
		var navRoot = document.getElementById("menu-sub");
		for (var i=0; i<navRoot.childNodes.length; i++) {
			var node = navRoot.childNodes[i];
			if (node.nodeName == "LI") {
				if(node.className == "active") node.id = "default";
				node.onmouseover = function() {
					activeSub = this;
					if(menuTimeout) window.clearTimeout(menuTimeout);
					menuTimeout = window.setTimeout("setActiveSub()", 300);
  				}
   		}
  		}
		navRoot.onmouseout = function() {
			if(menuTimeout) window.clearTimeout(menuTimeout);
			menuTimeout = window.setTimeout("setDefaultSub()", 300);
		}
 	}
}

function setActiveSub() {
	resetMenuSub();
	activeSub.className = "active";
}

function resetMenuSub() {
	var navRoot = document.getElementById("menu-sub");
	for (i=0; i<navRoot.childNodes.length; i++) {
		var node = navRoot.childNodes[i];
		if (node.nodeName == "LI") {
			node.className = "";
  		}
 	}
}

function setDefaultSub() {
	var navRoot = document.getElementById("menu-sub");
	for (i=0; i<navRoot.childNodes.length; i++) {
		var node = navRoot.childNodes[i];
		if (node.nodeName == "LI") {
			node.className = "";
			if(node.id == "default") node.className = "active";
  		}
 	}
}

var bubble = null;
function showBubble(id) {
	if(document.getElementById) {
		if(bubble) bubble.style.display = "none";
		bubble = document.getElementById("bubble" + id);
		bubble.style.display = "block";
		return false;
	} else return true;
}

function hideBubble(id) {
	if(document.getElementById) {
		//var bubble = document.getElementById("bubble" + id);
		bubble.style.display = "none";
	}
}

function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
}

var hideTimeout;

function initMenu() {
	if(document.getElementById && document.getElementById("menu")) {
		var menu = document.getElementById("menu");
		for (i=0; i<menu.childNodes.length; i++) {
			node = menu.childNodes[i];
			if (node.nodeName == "LI") {
				node.onmouseover = function() {
					window.setTimeout("showMenu('" + this.id + "')", 300);
  				}
   		}
  		}
 	}
	if(document.getElementById && document.getElementById("topbox")) {
		var topbox = document.getElementById("topbox");
		topbox.onmouseout = function() {
			if(hideTimeout) clearTimeout(hideTimeout);
			hideTimeout = window.setTimeout("setDefaultMenu()", 300);
  		}
		topbox.onmouseover = function() {
			if(hideTimeout) clearTimeout(hideTimeout);
  		}
	}
}

function showMenu(id) {
	var topbox = document.getElementById("topbox");
	topbox.className = "topbox" + id.substring(id.length - 1);
}

function setDefaultMenu() {
	var topbox = document.getElementById("topbox");
	topbox.className = "topbox0";
}

var preload = ["/img/bublina-cervena-levy-okraj.gif", "/img/bublina-cervena-pravy-okraj.gif", "/img/sediva-bublina-levy-okraj.gif", "/img/sediva-bublina-pravy-okraj.gif", "/img/bublina-zelena2-levy-okraj.gif", "/img/bublina-zelena2-pravy-okraj.gif", "/img/bublina-zluta-levy-okraj.gif", "/img/bublina-zluta-pravy-okraj.gif", "/img/bublina-modra-levy-okraj.gif", "/img/bublina-modra-pravy-okraj.gif"];
function preloadImages() {
	for(var i=0; i<preload.length; i++) {
		var imgobj = new Image();
		imgobj.src = preload[i];
	}
}

window.onload = function() {
	externalLinks();
	initMenu();
	initMenuSub();
	preloadImages();
}