// Schriftgrš§en-Regulierung
function changeFontsize(size){
    document.cookie = "flexibleFontsize" + "=" + size + "px; path=/";
    setFontsize();
    //return true;
};

function setFontsize(){
    var size;
    begin = document.cookie.indexOf("flexibleFontsize=");
    if (begin != -1) {
        begin += 17; /* Anfang des Wertes */
        end = document.cookie.indexOf("px", begin);
        if (end != -1) {
          size = document.cookie.substring(begin, end);
        } else {
            size = 14;
        }
    } else {
        size = 14;
		document.cookie = "flexibleFontsize" + "=" + size + "px; path=/";
    }
    //document.getElementsByTagName("body")[0].style.fontSize = size + "px";
	document.getElementById("content").style.fontSize = size + "px";



	//Navigation €ndern

    //document.getElementById("fs11").style.textDecoration = "none";
    //document.getElementById("fs12").style.textDecoration = "none";
    //document.getElementById("fs13").style.textDecoration = "none";
    //document.getElementById("fs" + size).style.textDecoration = "underline";

    //return false;
}

window.onload = setFontsize;