﻿

$(document).ready(function() {
	$(".accord dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".accord dd").css("display","none");
	$(".accord dt").click(function(){
		$(this).next().toggle();
		});
});



$(document).ready(function(){
  // 偶数行の色を設定
  $('table#intro tr:even').css('background-color', '#cccccc');
  // 奇数行の色を設定
  $('table#intro tr:odd').css('background-color', '#FFFFFF');
});

