

(function($) {
    $(document).ready(function(){
        // Bind click on style-switch
        $('span#style-switcher a').bind('click', function() {
            // Set cookie.
            createCookie('wstyle', $(this).attr('id'), 365);
            // Reload page.
            location.reload();
        });
    });
})(jQuery);
