function zmena_Blue() {
var dnu = 14;
var datum= new Date();
datum.setTime(datum.getTime() + 1000 * 60 * 60 * 24 * dnu);
document.getElementById("volbaStylu").href="http://www.pension325.cz/style.css";
document.getElementById("pokoje_obr").src="http://www.pension325.cz/grafika/pokoje.gif";
document.getElementById("informace_obr").src="http://www.pension325.cz/grafika/informace.gif";
document.getElementById("kontakt_obr").src="http://www.pension325.cz/grafika/kontakt.gif";
document.getElementById("fotogalerie_obr").src="http://www.pension325.cz/grafika/fotogalerie.gif";
document.getElementById("ostatni_obr").src="http://www.pension325.cz/grafika/ostatni.gif";
document.getElementById("heading").src="http://www.pension325.cz/grafika/head.jpg";
document.cookie = "style_pension325=blue; expires=" + datum.toGMTString()+"; path=/";
}
function zmena_Red() {
var dnu = 14;
var datum= new Date();
datum.setTime(datum.getTime() + 1000 * 60 * 60 * 24 * dnu);
document.getElementById("volbaStylu").href="http://www.pension325.cz/style_Red.css";
document.getElementById("pokoje_obr").src="http://www.pension325.cz/grafika/pokoje_Red.gif";
document.getElementById("informace_obr").src="http://www.pension325.cz/grafika/informace_Red.gif";
document.getElementById("kontakt_obr").src="http://www.pension325.cz/grafika/kontakt_Red.gif";
document.getElementById("fotogalerie_obr").src="http://www.pension325.cz/grafika/fotogalerie_Red.gif";
document.getElementById("ostatni_obr").src="http://www.pension325.cz/grafika/ostatni_Red.gif";
document.getElementById("heading").src="http://www.pension325.cz/grafika/head_Red.jpg";
document.cookie = "style_pension325=red; expires=" + datum.toGMTString()+"; path=/";
}
function nactiKolac() {
    var kolace=new Array();
    kolace = document.cookie.split("; ");
    for (var i=0; i<kolace.length;i++){ 
        var jedenKolac = kolace[i].split("=");
        if (jedenKolac[0] == 'style_pension325') var hodnota=jedenKolac[1];
        return hodnota;
return "blue";
} 

}
function nactiStyl(){
if (nactiKolac()=="blue")
zmena_Blue();
else if (nactiKolac()=="red"){
zmena_Red();
}
else
zmena_Blue();
}