﻿var pocetItem= 8; // počet položek v menu
var curentItem= null; // oktuální položka menu (def se nastaví v ./menu.html podle nastaveneho "<frame name="desk" src=..." v index.html)
var aktualitystav= "visible";

function wakeUpMenu(EID){
	//curentItem = EID;
	document.getElementById(EID).className="menuCurent";
	document.title="CARBON - " + EID;
	}
function changeItem(EID){
	window.document.getElementById(curentItem).className="menu";
	window.document.getElementById(EID).className="menuCurent";	
	curentItem = EID;
	top.document.title="CARBON - " + window.document.getElementById(EID).innerText;	
	}
function zvyrazni(EID){
	// alert(EID);
	window.document.getElementById(EID).style.borderColor="#cceecc";
	}
function zklidni(EID){
	// alert(EID);
	window.document.getElementById(EID).style.borderColor="#FFFFFF";
	}
function aktuality(EID){
	// alert(EID);
	if (aktualitystav=="hide"){
			window.document.getElementById(EID).style.display="block";
			window.document.getElementById('newsbutton').innerHTML="Novinky ‹‹‹‹";
			aktualitystav="visible";
		}
	else{
			window.document.getElementById(EID).style.display="none";
			window.document.getElementById('newsbutton').innerHTML="Novinky ››››";
			aktualitystav="hide";
			
		}
	}
	
	
// function changeStyle(){
	// var links = getElementByTagName("link");
	// for (i=0; i<links.length; i++){
		// if (links[i].getAttribute("rel").indexOf("stylesheet")!=-1){
			// links[i].getAttribute("href").indexOf="./externi_styl_menu_IE.css");
			// }
		// }
	
	// }
	