jQuery(function ($) {
    $('#FontSizeSwitch a').click(function () {
        $('body').attr('class', this.href.split('/').slice(-1));
        $.get(this.href + '?ajax=1');
        return false;
    });
});

