$(document).ready(function()
{
	$(function()
	{
		$('a[rel=lightbox]').lightBox();
	});

	var maxHeight = 0;
	$('.box .innerContent').each(function()
	{
		tmp = $(this).height();
		if( maxHeight < tmp )
		{
			maxHeight = tmp;
		}
	});

	$('.box .innerContent').height(maxHeight);
	
	$('.gallery a').append('<span class="link"></span>');

});

