$(document).ready(function(){

	// Hide all dds
	$("dl#v_show_hide dd").hide();

	//  When a dt is clicked, 
	$("dl#v_show_hide dt").click(function () {
	  //  Toggle the slideVisibility of the dd directly after the clicked dd
	  $(this).next("dd").slideToggle("slow");
	  $(this).text($(this).text() == '+ more' ? '- less' : '+ more');
		//  And hide any dds that are siblings of that "just shown" dd.
		//.siblings("dd").slideUp("slow");
	});
	
 });
