// JavaScript Document

$(document).ready
(
	function()
	{
		$('div.expandoParent').next().slideUp(0);
		$('div.expandoParent').click
		(
			function()
			{
				$(this).next().slideToggle(500);
			}
		);
	}
);
