$(document).ready(function(){     
    $("#normal").click(function () {
        var COOKIE_NAME = 'styleSwitcher';
        $.cookie(COOKIE_NAME, '', { path: '/', expires: 0 });
        location.reload(); 
    });
    $("#blue").click(function () {
        var COOKIE_NAME = 'styleSwitcher';
        $.cookie(COOKIE_NAME, 'blue', { path: '/', expires: 0 });
        location.reload(); 
    });
    $("#blackwhite").click(function () {
        var COOKIE_NAME = 'styleSwitcher';
        $.cookie(COOKIE_NAME, 'blackwhite', { path: '/', expires: 0 });
        location.reload(); 
    });
    
    $("#normal-font").click(function () {
        var COOKIE_NAME = 'fontSwitcher';
        $.cookie(COOKIE_NAME, '', { path: '/', expires: 0 });
        location.reload(); 
    });
    $("#big-font").click(function () {
        var COOKIE_NAME = 'fontSwitcher';
        $.cookie(COOKIE_NAME, 'big', { path: '/', expires: 0 });
        location.reload(); 
    });
    $("#bigger-font").click(function () {
        var COOKIE_NAME = 'fontSwitcher';
        $.cookie(COOKIE_NAME, 'bigger', { path: '/', expires: 0 });
        location.reload(); 
    });
});
