$()

in js/custom.js [5:22]


$(document).ready(function() {   

    var s = document.createElement("script");
    s.type = "text/javascript";
    s.src = "js/plugins/jquery-cookie/jquery.cookie.js";
    $("body").append(s);  

    if($.cookie("css")) {
        $("#colors").attr("href",$.cookie("css"));
    }
    $(".switcher li a").click(function() { 

        $("#colors").attr("href",$(this).attr("href"));
        $.cookie("css",$(this).attr("href"));
        return false;
    });

});