$(function(){
	$('a[rel*=gal]').colorbox({maxWidth: '90%', maxHeight: '90%', rel: $(this).attr('rel')});

	if ($('div.leftcol').height() >= $('div.rightcol').height())
	{
		$('div.rightcol').css({height: $('div.leftcol').height()+'px'});
	} else
	{
		$('div.leftcol').css({height: $('div.rightcol').height()+'px'});
	};

	$('a#postenq').click(function(event){
		event.preventDefault();
		$('form:first').submit();
	});
});



