var currentSelection;
jQuery(function(){
	jQuery(".accordian dd:not(:first)").hide();
	jQuery(".accordian dt a").mouseover(function(){
		if (currentSelection != this) {
			currentSelection = this;
			jQuery(".accordian dd:visible").slideUp("slow");
			jQuery(this).parent().next().slideDown("slow");
		}
		return false;
	});
});