var odkazyvmenu = document.getElementById('menu_okresy').getElementsByTagName('a');
for(var i = 0; i < odkazyvmenu.length; i++)
	{
	if(odkazyvmenu[i].href.indexOf('smluvni-partneri-') != -1)
		{
		var zacatek = odkazyvmenu[i].href.indexOf('smluvni-partneri-');
		var konec = odkazyvmenu[i].href.indexOf('.php');
		var str = odkazyvmenu[i].href.substring(zacatek+17,konec);
		odkazyvmenu[i].id = 'mo-'+str;
		/*
		a++;
		odkazy[a] = odkazyvmenu[i].id = '';
		*/
		}
	}


var okresg = document.getElementById("mapa_okresy").getElementsByTagName("area");
for (var i=0;i<okresg.length;i++) {
	okresg[i].onmouseover = function() {
		document.getElementById("okresy").src="obrazky/mapa/mapa_"+this.id+".gif";
		document.getElementById("mo-"+this.id).className='js'
		};
	okresg[i].onmouseout = function() {
	document.getElementById("okresy").src="obrazky/mapa/mapa_pruhledna.gif";
	document.getElementById("mo-"+this.id).className=''
	};
}
var okrest = document.getElementById("menu_okresy").getElementsByTagName("a");
for (var i=0;i<okrest.length;i++) {
	okrest[i].onmouseover = function() {
		var j = this.id+"";
		j = j.substring(3);
		if(j == 'ostatni-regiony-cr')
			document.getElementById("okresy").src="obrazky/mapa/mapa_pruhledna.gif"
		else
			document.getElementById("okresy").src="obrazky/mapa/mapa_"+j+".gif"
	
	};
	okrest[i].onmouseout = function() {
		document.getElementById("okresy").src="obrazky/mapa/mapa_pruhledna.gif"
	}; 
}
