
/*
 * Adjusts columns for main query paqe.
 */
function adjustColumnHeight()
{
	// get the height
	var heightInfo = $('#main-info-pane').height();
	var heightContent = $('#main-content-pane').height();
	
	// determine the greater
	if ( heightContent >= heightInfo )
	{
		$('#main-info-pane').height(heightContent+50);
	}
	$('#info').text('info (' + heightInfo + ', '  + heightContent + ')');
}


function initializeLightBox()
{
	$(function() {
		$('a.lightbox').lightBox({fixedNavigation:true}); // Select all links with lightbox class
	});
}

