﻿$(document).ready(function () {

    var options = {};

    if (document.location.search) {
        var array = document.location.search.split('=');
        var param = array[0].replace('?', '');
        var value = array[1];

        if (param == 'animation') {
            options.animation = value;
        }
        else if (param == 'type_navigation') {
            options[value] = true;
            if (value == 'dots') $('.border_box').css({ 'marginBottom': '40px' });
        }
    }

    $('.box_skitter_large').skitter(options);

});

$(document).ready(function () {

    $(".rounded-img, .rounded-img2").load(function () {
        $(this).wrap(function () {
            return '<span class="' + $(this).attr('class') + '" style="background:url(' + $(this).attr('src') + ') no-repeat center center; width: ' + $(this).width() + 'px; height: ' + $(this).height() + 'px;" />';
        });
        $(this).css("opacity", "0");
    });

});

jQuery(document).ready(function ($) {
    $('.lightbox').lightbox();
});
