
$(function ()
{
	var dls=$("div#faqContent dl");

	dls.each(function(index)
	{ 
		var current=$(this);
		
		$("dt a", this).each(function()
		{ 
			if (index!=0) $("dd", current).hide(); 
		
			$(this).click(function()
			{ 
				//$("dd", dls).slideUp();
				$("dd", current).slideToggle();
				return false; 
			}); 
		}); 
	}); 
});