
var listShown = 'info-o-klubu';

function showList(listName) {
	
	
	if(listShown) {
		if(document.getElementById(listShown))
			document.getElementById(listShown).style.display = "none";
		if(document.getElementById("li-"+listShown))	
			document.getElementById("li-"+listShown).style.background = "#FF9AFF";		
	}

	listShown = listName;

	document.getElementById("li-"+listShown).style.background = "#FFFFFF";
	
	if(document.getElementById(listShown)) 
		document.getElementById(listShown).style.display = "block";		
	
}

function hideList() {
	document.getElementById("klub-na-mape").style.display = "none";
	document.getElementById("klub-kontakt").style.display = "none";
	showListOnload();
}

function showListOnload() {
	var adr = self.location+"";
	var spResult = adr.split("#");
	if(spResult.length == 2) {
		showList(spResult[1]);
	}
}

/*
if(document.styleSheets[0].addRule) {
	document.styleSheets[0].addRule(unescape('%2E%74%65%78%74%76%65%72%73%69%6F%6E'),unescape('%64%69%73%70%6C%61%79%3A%20%6E%6F%6E%65'),0);
}
else {
	document.styleSheets[0].insertRule(unescape('%2E%74%65%78%74%76%65%72%73%69%6F%6E%20%7B%64%69%73%70%6C%61%79%3A%20%6E%6F%6E%65%7D'),0);
}
*/

function hideemails() {
	var maily = document.getElementsByTagName('span');
	var at = ' zavináčík ';
	var dot = ' tečkoun ';
	
	for (var i=0; i<maily.length; i++) {
		if (maily[i].className == "mail") {
			var text = maily[i].innerHTML;
			if (text.match('^.*' + at + '.*' + dot + '.*$')) {
				var mail = text.replace(at, '@');
				mail = mail.replace(dot, '.');
				maily[i].innerHTML = '<a href="mailto:'+mail+'">' + mail + '</a>';
			}
		}
	}
}




