// ===========================================

// Fontchange JS

// ===========================================


$(document).ready(function() {
    if($.cookie("css")) {
        var C = $.cookie("css");
        $("body").addClass(C);
    }
    $("#header-fontsize ul li a").click(function() {
        var C = $(this).attr('rel');

        $("body").removeClass("fs");
        $("body").removeClass("fm");
        $("body").removeClass("fl");
        $("body").removeClass("fll");

        $("body").addClass(C);
        $.cookie("css",$(this).attr('rel'), {expires: 90, path: '/'});
        return false;
    });
});

