﻿$(document).ready(function () {

    $.localScroll({
        queue: true,
        hash: true,
        easing: 'easeInOutQuart',
        duration: 1500
    });

    $('.p-screenshots').each(function () {
        // find the group
        var group = $(this).find("li a:first").attr("rel");
        // make sure we are grouping images accordingly
        $(this).find('li a[rel*=' + group + ']').lightBox({
            overlayBgColor: '#CCC',
            overlayOpacity: 0.6,
            imageLoading: '/content/images/ajax-loader.gif',
            imageBtnClose: '/content/images/lightbox-btn-close.gif',
            imageBtnPrev: '/content/images/lightbox-btn-prev.gif',
            imageBtnNext: '/content/images/lightbox-btn-next.gif',
            containerResizeSpeed: 350,
            txtImage: 'Imagem'
        });
    });


});

