$.Lightbox.construct({
    show_helper_text: false,
    show_info: true,
    show_extended_info: true,
    show_linkback: false,
    auto_resize: false,
    ie6_support: false,
    auto_scroll: 'ignore',
    text: {
        image:		'',
        of:			'из',
        close:		'<b>Закрыть X</b>',
        closeInfo:	'Так же вы жожете закрыть изображение, кликнув на пустую область вне его.',
        download:	'Загрузить',
        help: {
            close:		'Click to close',
            interact:	'Hover to interact'
        },
        about: {
            text: 	'jQuery Lightbox Plugin (balupton edition)',
            title:	'Licenced under the GNU Affero General Public License.',
            link:	'http://jquery.com/plugins/project/jquerylightbox_bal'
        }
    },
    files: {
        images: {
            prev:		'img/light-box/prev.png',
            next:		'img/light-box/next.png',
            blank:		'img/light-box/blank.gif',
            loading:	'img/light-box/loading.gif'
        }
    }
});
$(document).ready(function(){
    if (!(jQuery.browser.msie && jQuery.browser.version < 7))
        $('a.gallery').lightbox();
});
