
$(document).ready(
	function()
		{
			$(".title").click
				( function() 
					{ $(this).next("p").toggle("slow");	}
				)
		}
	);

