if($.cookie("style")) {
    $("link.stylechoice").attr("href",$.cookie("style"));
}
$(document).ready(function() {
    $(".smallbox p a").click(function() {
        $("link.stylechoice").attr("href",$(this).attr('rel'));
        $.cookie("style",$(this).attr('rel'), {expires: 365, path: '/'});
        return false;
    });
});