$(document).ready(function() {
    var COOKIE_NAME = "kantenbandfont";
    // Reset Font Size
    var fontsize = $('html').css('font-size');
   
    if ($.cookie(COOKIE_NAME)) {
        fontsize = $.cookie(COOKIE_NAME);
        $("html").css("font-size", fontsize);
       
    } else {
         $.cookie(COOKIE_NAME, fontsize);
    }

    $("#original").click(function() {
        $('html').css('font-size', '1em');
        $.cookie(COOKIE_NAME, '1em');
    });
    // Increase Font Size
    $("#larger").click(function() {
        var currentFontSize = $('html').css('font-size');
        var currentFontSizeNum = parseFloat(currentFontSize, 10);
        var newFontSize = currentFontSizeNum * 1.2;
        $('html').css('font-size', newFontSize);
        $.cookie(COOKIE_NAME, newFontSize);
        return false;
    });
    // Decrease Font Size
    $("#smaller").click(function() {
        var currentFontSize = $('html').css('font-size');
        var currentFontSizeNum = parseFloat(currentFontSize, 10);
        var newFontSize = currentFontSizeNum * 0.8;
        $('html').css('font-size', newFontSize);
        $.cookie(COOKIE_NAME, newFontSize);
        return false;
    });
});
