$(function()
{
	$('#agents > p a').click(function()
	{
		$(this).parent().next().slideToggle();
	});
});