/**
 * User: maurogadaleta
 * Date: 01/09/11
 * Time: 21:51
 */

jQuery(document).ready(function () {
    $('.open_gallery').click(function () {
        $('#opacity').fadeIn('slow', function () {
            if (!$('#gallery').data('galleria')) {
                var height = $(window).height() - 300;
                var width = $(window).width() - 300;

                var top = ($(window).height() - height) / 2;
                var left = ($(window).width() - width) / 2;

                $('#gallery').data('galleria', true).galleria({
                    width:width,
                    height:height,
                    autoplay:3000

                }).css('top', top).css('left', left);
            }
            $('#gallery').fadeIn('slow', listeners);
        });
        return false;
    });


    var listeners = function () {
        var closeGallery = function () {
            $('#gallery').fadeOut('slow', function () {
                $('#opacity').fadeOut('slow', function () {
                });
            });
        };
        $('#opacity').click(closeGallery);
        $(document).keydown(function (e) {
            if (e.keyCode == 27) {
                closeGallery();
            }
        });
    }
});
