$j(function()
{
	SetEventBoxHeight();
	SetupCommentForm();
});

function SetEventBoxHeight(evt)
{
	$('AEPlaceholder').style.height = $('ActualEvent').offsetHeight + 'px';
}

function SetupCommentForm()
{
	if ($j('#CommentForm').length && !$j('#Education').length)
	{
		$j('#CommentForm').hide();

		$j('#PageContent').addClass('js_on');
		$j('#PageContent span.comment_link').click(function()
		{
			$j('#CommentForm').slideToggle();
		});
	}
}
