// JavaScript Document
var popisy = new Array();
popisy["listok"] = "Po vytlacení kupónu dostanete zlavu v pokladni Nokle";
popisy["rezervacia"] = "Rezervujte si online vyhliadkovú plavbu na plti";

function oznacc(x){
	if(document.getElementById(x+'p').style.display == "none" ^ document.getElementById(x+'p').style.display == ""){
		document.getElementById(x).style.backgroundColor = "#E4CB7E";
		document.getElementById(x+'p').style.display = "block";}
	else{
		document.getElementById(x).style.backgroundColor = "#ffffff";
		document.getElementById(x+'p').style.display = "none";}
}
function nad(x){
document.getElementById(x).style.textDecoration = "underline";

}
function prec(x){
document.getElementById(x).style.textDecoration = "none";

}
function zobrazbub(e,popis){
var c = document.body.parentNode.scrollTop;
var a = e.clientX ;
var b = e.clientY - 83 + c;
document.getElementById('bublinka').innerHTML = popisy[popis];
document.getElementById('bublinka').style.display = "block";
document.getElementById('bublinka').style.top = b+"px";
document.getElementById('bublinka').style.left = a+"px";
}
function zmazbub(){document.getElementById('bublinka').style.display = "none";}
