﻿/* Selectie tekstgrootte */
(function($) {
    $(document).ready(function() {
        $("#fontsize a").each(function() {
            // Koppel een event handler aan de links
            $(this).click(clickHandler);
        });
    });

    function clickHandler(event) {
        var oldSize = $.cookie("fontsize");
        var newSize = $(this).attr("class");
        // ...toegepast op de body...
        $("body").removeClass(oldSize).addClass(newSize);
        // ...en opgeslagen in een cookie.
        $.cookie("fontsize", null);
        $.cookie("fontsize", newSize, { path: "/" });
    }
})(jQuery);

