var ds_gallery = (function($) {
    // module ds_gallery
    var gallery_popup = function(href) {
        window.open(href, 'darkside_gallery_details',
            'width=850,height=750,scrollbars=yes,menubar=no,location=no,'
            +'status=yes,resizable=yes,toolbars=no'
        );
        return false;
    };

    $(document).ready(function() {
        $('.photo-image a').click(
            function() { return gallery_popup(this.href); }
        );
    });
    
    return {
        'gallery_popup': gallery_popup
    };
})(jQuery);
