$(document).ready
(
	function()
	{
		$('#gallery .thumbs a').click
		(
			function ()
			{
				var image_id = $(this).attr('rel');
				
				$.ajax
				(
					{
						type: 'GET',
						url: '/editor/scripts/custom_scripts/ajax/gallery/medium.ajax.php',
						data: 'image_id=' + image_id,
						success: function(req)
						{
							var image_url = req.getElementsByTagName('image_url')[0].childNodes[0].nodeValue;
							var medium_url = req.getElementsByTagName('medium_url')[0].childNodes[0].nodeValue;
							var img_width = req.getElementsByTagName('width')[0].childNodes[0].nodeValue;
							var img_height = req.getElementsByTagName('height')[0].childNodes[0].nodeValue;
							
							$('#gallery_image').attr('href', medium_url);
							$('#gallery_image img').attr
							(
								{
									src: medium_url,
									width: img_width,
									height: img_height
								}
							);
						}
					}
				);
			}
		);
		
		$('#gallery_image').lightBox
		(
			{
				imageLoading: '/editor/images/design/lightbox/lightbox-ico-loading.gif',
				imageBtnClose: '/editor/images/design/lightbox/lightbox-btn-close.gif',
				imageBtnPrev: '/editor/images/design/lightbox/lightbox-btn-prev.gif',
				imageBtnNext: '/editor/images/design/lightbox/lightbox-btn-next.gif',
				txtImage: 'Image',
				txtOf: 'of'
			}
		);
	}
);