// http://jquery.com/
$(document).ready(function () {
    // http://fancybox.net/   

    $('#style_switcher a').styleSwitcher();

});

$(window).load(function () {

    // wyskakujace okienko zaraz po wejsciu na strone
    if ($("#style_switcher").length > 0) {

        var cssFileName = $.cookie('css_file_name');

        if (cssFileName != null) {
            
            if (cssFileName == "graphics") {
                
                $.cookie("css_file_name", null);
            }
            else {
                $("#style_switcher_link").text("wersja graficzna");
                $("#style_switcher_link").attr('href', "#graphics");
            }

            var oldPath = $('#stylesheet').attr('href');

            var exploded = oldPath.split('/');
            var newPath = oldPath.replace(exploded[exploded.length - 1], cssFileName + ".css");
            $('#stylesheet').attr("href", newPath);

        }

    }

});
