$(document).ready(function(){

    var images = new Array('/images/akcia/11_prospect_small.png','/images/akcia/15_logo_note_small.png',
    '/images/akcia/23_hero.png','/images/akcia/2_invitation_small.png',
    '/images/akcia/30_catarina_small.png','/images/akcia/31_250.png',
    '/images/akcia/32_250.png','/images/akcia/34_Bord.jpg',
    '/images/akcia/4_logo_cup_small.png','/images/akcia/6_ticket_small.png');

    function getRandomInt(min, max)
    {
      return Math.floor(Math.random() * (max - min + 1)) + min;
    }
    var temp;
    var index;
    for(var i = 0; i < images.length; i++){
        temp = images[i];
        index = getRandomInt(0, 9);
        images[i] = images[index];
        images[index] = temp;
    }


    $('#img-left, #img-right').click(initImg);
    var ch = 0;
    initImg();
    function initImg(){      
        if(ch > 9){
            $('#last').show();
            $('#save').show();
        }
        $('#img-left').attr('src', images[ch]);
        ch++;
        $('#img-right').attr('src', images[ch]);
        ch++;
    }

    if($(window).height() > 450){
        $('#center').css('top',(($(window).height() - $('#center').height()) / 2)+'px');
    }
    if($(window).width() > 700){
        $('#center').css('left',(($(window).width() - $('#center').width()) / 2)+'px');
    }

    $('#akcia').click(function(){
        $('body').scrollTop(0);
        $('#div-akcia').show();
        $('#div-akcia').fadeTo('slow', 0.5,function(){
        $('body').height($(window).height());
        $('body').css('overflow', 'hidden');
            $('#center').fadeTo('slow', 1);

            });
    })

    $('#akcia-close').click(function(){
        $('#div-akcia').hide();
        $('#center').hide();
        $('body').css('overflow', 'inherit');
        ch = 0;
    })


    $('a.img-lb').lightbox();
    $.Lightbox.construct({
        show_linkback: false,
        show_helper_text: false,
        show_info: true,
        show_extended_info: true,
        download_link: false,
        keys: {
            close: 'z',
            prev: 'q',
            next: 'e'
        },
        opacity: 0.7,
        text: {
            image: 'Фото',
            of: 'из',
            close: 'Закрыть',
            download: 'Загрузить'
        }
    });

});

