var persistmenu="yes" //"yes" or "no". Make sure each SPAN content contains an incrementing ID starting at 1 (id="sub1", id="sub2", etc)
var persisttype="sitewide" //enter "sitewide" for menu to persist across site, "local" for this page only

if (document.getElementById){ //DynamicDrive.com change
document.write('<style type="text/css">\n')
document.write('.submenu{display: none;}\n')
//document.write('.subform{display: none;}\n')
document.write('</style>\n')
}

function SwitchMenu(obj, active_id){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("div"); //DynamicDrive.com change
		if(el.style.display != "block"){ //DynamicDrive.com change
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu") {
    				ar[i].style.display = "none";
                }
                else{
                if(ar[i].className =="tab0" || ar[i].className =="tab1"){
                if (ar[i].getAttribute('id')==active_id) {
				    ar[i].className = "tab1";
                }
                else{
				    ar[i].className = "tab0";
                }
                }
                }
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
            document.getElementById(active_id).className = "tab0";
		}
	}
}

function chState(id){
	if(document.getElementById){
	var ar = document.getElementById("masterdiv").getElementsByTagName("div"); //DynamicDrive.com change
			for (var i=0; i<ar.length; i++){
				if (ar[i].getAttribute('id')==id) {
				ar[i].className = "tab1";
                }
                else{
				ar[i].className = "tab0";
                }
			}
	}
}

function SwitchForm(id){
    var obj="sub"+id;
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterform").getElementsByTagName("div"); //DynamicDrive.com change
		if(el.style.display != "block"){ //DynamicDrive.com change
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="subform") //DynamicDrive.com change
				ar[i].style.display = "none";
			}
            var ine = "<form method=\"post\" action=\"reservation.php\"><table class='forma'>";
            var day = document.getElementById("date_"+id).value;
            ine += "<tr>";
            ine += "<td><input type=\"hidden\" name=\"action\" value=\"make_reservation\"></td>";
            ine += "<td><input type=\"hidden\" name=\"datum\" value=\""+day+"\" \/><input type=\"hidden\" name=\"id\" value=\""+id+"\" \/><\/td>";
            ine += "<\/tr>";
            ine += "<tr>";
            ine += "<td><span class=\"light_text small\">Vaše ime:<\/span><\/td>";
            ine += "<td><input type=\"text\" class=\"reservation_frm\" name=\"ime\" \/><\/td>";
            ine += "<\/tr>";
            ine += "<tr>";
            ine += "<td><span class=\"light_text small\">Vaša email adresa:<\/span><\/td>";
            ine += "<td><input type=\"text\" class=\"reservation_frm\" name=\"email\" \/><\/td>";
            ine += "<tr>";
            ine += "<td><span class=\"light_text small\">Vaš broj telefona:<\/span><\/td>";
            ine += "<td><input type=\"text\" class=\"reservation_frm\" name=\"telefon\" \/><\/td>";
            ine += "<tr>";
            ine += "<td colspan=\"2\"><span class=\"light_text small\">Komentar:<\/span><br \/>";
            ine += "<textarea name=\"komentar\" class=\"comment\"></textarea><\/td>";
            ine += "<\/tr>";
            ine += "<tr>";
            ine += "<td><input type=\"submit\" value=\"dalje\" \/><\/td>";
            ine += "<td><\/td>";
            ine += "<\/tr>";
            ine += "<\/table><\/form>"
            el.innerHTML = ine;
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}



function get_cookie(Name) { 
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { 
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function onloadfunction(){
if (persistmenu=="yes"){
var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname
var cookiename=(persisttype=="sitewide")? "switchform" : window.location.pathname
var cookievalue=get_cookie(cookiename)
if (cookievalue!="")
document.getElementById(cookievalue).style.display="block"
}
}

function savemenustate(){
var inc=1, blockid=""
while (document.getElementById("sub"+inc)){
if (document.getElementById("sub"+inc).style.display=="block"){
blockid="sub"+inc
break
}
inc++
}
var cookiename=(persisttype=="sitewide")? "switchmenu" : window.location.pathname
var cookiename=(persisttype=="sitewide")? "switchform" : window.location.pathname
var cookievalue=(persisttype=="sitewide")? blockid+";path=/" : blockid
document.cookie=cookiename+"="+cookievalue
}

if (window.addEventListener)
window.addEventListener("load", onloadfunction, false)
else if (window.attachEvent)
window.attachEvent("onload", onloadfunction)
else if (document.getElementById)
window.onload=onloadfunction

if (persistmenu=="yes" && document.getElementById)
window.onunload=savemenustate

function SetCookie(cookieName,cookieValue,nDays) {
 var today = new Date();
 var expire = new Date();
 if (nDays==null || nDays==0) nDays=1;
 expire.setTime(today.getTime() + 3600000*24*nDays);
 document.cookie = cookieName+"="+escape(cookieValue)
                 + ";expires="+expire.toGMTString();
window.location.reload();
}

function ShowMenu(link) {
    document.location = link;
    //alert(link);
}

function urlencode( str ) {
    // http://kevin.vanzonneveld.net
    // +   original by: Philip Peterson
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +      input by: AJ
    // +   improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   improved by: Brett Zamir (http://brett-zamir.me)
    // +   bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +      input by: travc
    // +      input by: Brett Zamir (http://brett-zamir.me)
    // +   bugfixed by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
    // +   improved by: Lars Fischer
    // %          note 1: info on what encoding functions to use from: http://xkr.us/articles/javascript/encode-compare/
    // *     example 1: urlencode('Kevin van Zonneveld!');
    // *     returns 1: 'Kevin+van+Zonneveld%21'
    // *     example 2: urlencode('http://kevin.vanzonneveld.net/');
    // *     returns 2: 'http%3A%2F%2Fkevin.vanzonneveld.net%2F'
    // *     example 3: urlencode('http://www.google.nl/search?q=php.js&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:en-US:unofficial&client=firefox-a');
    // *     returns 3: 'http%3A%2F%2Fwww.google.nl%2Fsearch%3Fq%3Dphp.js%26ie%3Dutf-8%26oe%3Dutf-8%26aq%3Dt%26rls%3Dcom.ubuntu%3Aen-US%3Aunofficial%26client%3Dfirefox-a'
                             
    var histogram = {}, unicodeStr='', hexEscStr='';
    var ret = (str+'').toString();
    
    var replacer = function(search, replace, str) {
        var tmp_arr = [];
        tmp_arr = str.split(search);
        return tmp_arr.join(replace);
    };
    
    // The histogram is identical to the one in urldecode.
    histogram["'"]   = '%27';
    histogram['(']   = '%28';
    histogram[')']   = '%29';
    histogram['*']   = '%2A';
    histogram['~']   = '%7E';
    histogram['!']   = '%21';
    histogram['%20'] = '+';
    histogram['\u00DC'] = '%DC';
    histogram['\u00FC'] = '%FC';
    histogram['\u00C4'] = '%D4';
    histogram['\u00E4'] = '%E4';
    histogram['\u00D6'] = '%D6';
    histogram['\u00F6'] = '%F6';
    histogram['\u00DF'] = '%DF';
    histogram['\u20AC'] = '%80';
    histogram['\u0081'] = '%81';
    histogram['\u201A'] = '%82';
    histogram['\u0192'] = '%83';
    histogram['\u201E'] = '%84';
    histogram['\u2026'] = '%85';
    histogram['\u2020'] = '%86';
    histogram['\u2021'] = '%87';
    histogram['\u02C6'] = '%88';
    histogram['\u2030'] = '%89';
    histogram['\u0160'] = '%8A';
    histogram['\u2039'] = '%8B';
    histogram['\u0152'] = '%8C';
    histogram['\u008D'] = '%8D';
    histogram['\u017D'] = '%8E';
    histogram['\u008F'] = '%8F';
    histogram['\u0090'] = '%90';
    histogram['\u2018'] = '%91';
    histogram['\u2019'] = '%92';
    histogram['\u201C'] = '%93';
    histogram['\u201D'] = '%94';
    histogram['\u2022'] = '%95';
    histogram['\u2013'] = '%96';
    histogram['\u2014'] = '%97';
    histogram['\u02DC'] = '%98';
    histogram['\u2122'] = '%99';
    histogram['\u0161'] = '%9A';
    histogram['\u203A'] = '%9B';
    histogram['\u0153'] = '%9C';
    histogram['\u009D'] = '%9D';
    histogram['\u017E'] = '%9E';
    histogram['\u0178'] = '%9F';
    
    // Begin with encodeURIComponent, which most resembles PHP's encoding functions
    ret = encodeURIComponent(ret);
 
    for (unicodeStr in histogram) {
        hexEscStr = histogram[unicodeStr];
        ret = replacer(unicodeStr, hexEscStr, ret); // Custom replace. No regexing
    }
    
    // Uppercase for full PHP compatibility
    return ret.replace(/(\%([a-z0-9]{2}))/g, function(full, m1, m2) {
        return "%"+m2.toUpperCase();
    });
}

