$(function()
{
	function b(txt)
	{
		if(!$('#bag').size())
		{
			$('body').append('<div id="bag" style="background:#000; color:#fff; font-size:12px; padding:20px; position:absolute; left:0; top:0; opacity:0.7; z-index:2000"></div>');
		}
		$('#bag').text(txt);
	}

	function right_col_h()
	{
		$('.mclayout_3columns').height('auto');
		if(($('.page_wrap').height()-211) > $('.mclayout_3columns').height())
		{
			$('.mclayout_3columns').height($('.page_wrap').height()-196);
		}
	}
	right_col_h();
	$(window).resize(function()
	{
		right_col_h();
	});
	
	$('.minphoto a, a[rel=group1]').fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '';
				}
	});

})
