//$(window).load(function() {
			$.Lightbox.text = {
				image:		'Изображение',
				of:			'из',
				close:		'Закрыть&nbsp;X',
				closeInfo:	'Нажмите для закрытия.',
				download:	'Прямая ссылка для скачивания изображения',
				help: {
					close:		'Закрыть&nbsp;Х',
					interact:	'Нажмите для закрытия'
				},
				about: {
					text: 	'',
					title:	'',
					link:	'#'
				}
			};
			$.Lightbox.files = {
				// If you are doing a repack with packer (http://dean.edwards.name/packer/) then append ".packed" onto the js and css files before you pack it.
				js: {
					lightbox:	'/templates/js/jquery.lightbox.js',
					colorBlend:	'/templates/js/jquery.color.js'
				},
				css: {
					lightbox:	'/templates/css/jquery.lightbox.css'
				},
				images: {
					prev:		'/templates/js/images/prev.gif',
					next:		'/templates/js/images/next.gif',
					blank:		'/templates/js/images/blank.gif',
					loading:	'/templates/js/images/loading.gif'
				}
			};
			$.Lightbox.download_link = true;		// Display the download link
			$.Lightbox.show_linkback = false;	// true, false
			$.Lightbox.show_info = true;	// auto - automaticly handle, true - force
			$.Lightbox.show_extended_info = true;	// auto - automaticly handle, true - force	
			$.Lightbox.auto_resize = false;	
//});


/* hack for this site */

$(window).load(function() {
	$('.glink').click(function () {
		$('#' + $(this).attr('id') + '1').click();
		return false;
	});
});			
