function changeFontSize(fontSize) {
    var value = '';
    if (fontSize == 'midium') {
        value = '107%';
    } else if (fontSize == 'large') {
        value = '114%';
    } else {
        value = '100%';
    }

    $(fontSwitchTarget).css('font-size',value);
    $.cookie('fontSize', fontSize, { path: '/'});
}

$(function() {
    var fontSize = $.cookie('fontSize');

    if (fontSize == '') {
        fontSize = 'small';
    }

    changeFontSize(fontSize);

    $('.fontSwitch li').click(function(){
        fontSize = $(this).attr('id');
        changeFontSize(fontSize);
    });
});