$(document).ready(function()
{
	$('a[@rel=external]').bind('click', function()
	{
		$(this).attr('target', '_blank');
	});

	$('ul#gallery a, ul#gallery-row a').lightBox({fixedNavigation:true});

	adjust();
});

function adjust()
{
	var height = $(window).height();
	height -= 431;
	if (height < 269) height = 269;
	$('#side').height(height);
}
