jQuery(document).ready(function ()
{
     jQuery("a[rel=photo_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
	 if(jQuery('.main_content .left_column').height() > jQuery('.main_content .center_column_wrap').height())
	 {
		 jQuery('.main_content .center_column_wrap .block_inside').css('height',jQuery('.main_content .left_column').height()-jQuery('.main_content .center_column_wrap .photos').height()-60);
	 }
	 if(jQuery('.main_content .left_column').height() < $('.main_content .center_column_wrap').height())
	 {
		 jQuery('.main_content .left_column .block_inside').css('height',jQuery('.main_content .center_column_wrap').height()-jQuery('.main_content .left_column .logo').height()-jQuery('.main_content .left_column .block_online').height()-110);
	 }
})
