   			
	$(document).ready(function()
	{
		$(".TopicContainer").each(function()
		{
			$(this).click(function()
			{
				$(this).children(".TopicTitle").each(function()
				{
					$(this).toggle();
				});
				if ($(this).children(".MenuContainer").length == 1)
					$(this).children(".MenuContainer").attr('class', 'MenuContainerClose');
				else
					$(this).children(".MenuContainerClose").attr('class', 'MenuContainer');
			});
		});
	});
