$(document).ready
(
	function()
	{
		$('div.showHideLink')
		.wrapInner('<span></span>') //so CSS, most importantly including hover, can be applied to span inside div rather than div itself, so doesn't apply to entire line
		.next()
		.hide()
		;
		$('div.showHideLink') //tried chaining this in above, but made animations jumpy
		.toggle
		(
			function()
			{
				$(this).next().slideDown('slow');
			}
			,
			function()
			{
				$(this).next().slideUp('slow');
			}
		);
	}
);

