// shows/hides div blocks that are immediate siblings of class .showhide

$(document).ready(function()
{
	$(".showhide").css("cursor", "pointer");
	$(".showhide").nextAll().hide();
	$("#col2 div:first .showhide").nextAll().show();
	$(".showhide").click(function()
	{
		$(this).parent("div").siblings("div").children(".showhide").nextAll().slideUp("slow");
		$(this).nextAll().slideToggle("slow");
	});
});