jQuery/アコーディオンメニュー

メニュー1
メニュー1-1
メニュー1-2
メニュー2
メニュー2-1
メニュー2-2
メニュー2-3
メニュー3
メニュー3-1
メニュー4
メニュー4-1
メニュー4-2
メニュー4-3
メニュー4-4
メニュー5
メニュー5-1
jQuery
$(function(){
  $("#acordion dt").on({
	click: function(){
 	  $(this).nextUntil("dt").slideToggle(300);
 	},
 	mouseover: function(){
 	  $(this).css("background", "#ddd");
 	},
 	mouseout: function(){
 	  $(this).css("background", "");
 	}
  });
});