$(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 dt 
						$(this).next("dd").slideToggle("slow") 
						// And hide any dds that are siblings of that "just shown" dd. 
						.siblings("dd").slideUp("slow"); }); }); 

