$(function () {

	var heads = [];
	$('dl.accordion dt:first-child').each(function () {
            heads.push(this);
    });
    
    $(heads).click(function() {
    	var $target = $(this).parent().children('dd');
    	if($target.css('display')=='none') {
    		$target.slideDown();
    	} else {
    		$target.slideUp();
    	}
    });

});