var BLUE = {};
$(function()
{
    // wersja developerska?
    BLUE.devMode = true;

    BLUE.config = {
        prettyPhoto:
        {
            overlay_gallery: false,
            theme: "dark_square",
            show_title: false,
            default_width: '100%',
            default_height: '100%'
        },

        fonts:
        [
            "futura-futuris-reg",
            "futura-futuris-light",
            "futura-book",
            "walkway",
            "pt-sans",
            "lane"
        ]
    }

    BLUE.status =
    {
        currentFont: 0
    }

    $("a[rel^='prettyPhoto']").prettyPhoto(BLUE.config.prettyPhoto);
    $("a[rel='fullscreener']").fullscreener();
});
