﻿$(document).ready(function()
{	
	$('.callout > .calloutTitle').click(function()
	{
		var content = $(this).parent().children('.calloutContent');
		if (content.is(':visible'))
		{
			content.customFadeOut('slow');
		}
		else
		{
			content.customFadeIn('slow');
		}
	});
});