$(window).load(function()
{
	if( $('#main')[0] )
	{
		//make right column at least as high as left
		if( $('#left').height() > $('#content').height() ){
			var new_height = $('#main').height() + ( $('#left').height() - $('#content').height() );
			$('#main').height(new_height);
		}
		
	}



	$('#gallery a:not(.link)').lightBox({fixedNavigation:true});
});