$(function(){
 $("#leftContent dd").hide();
  $("#leftContent dt").click(function(){
   $("#leftContent dd:visible").slideUp("slow");
   $(this).next().slideDown("slow");
 });
});
$(function(){
	$("dl.item,dl.item2").mouseover(function(){
			this.style.backgroundColor = "#EEEEEE";
	});
	$("dl.item,dl.item2").mouseout(function(){
		this.style.backgroundColor = "#FFFFFF";
	});
});

/*$(function(){
        // 読み込み時に実行
        $(document.body).ready(function(){
          // liタグの子要素のaタグのみ検索
          $("li > a").each( function(){
            if( window.location.pathname.indexOf($(this).attr("href")) != -1){
              $(this).attr("style","color:#ff0;");
            } else {
              $(this).attr("style","color:#0ff;");
            }
          });
        });
      });*/