

$(function(){
  // 偶数行の色を設定
  $('.stripe tr:even').addClass('even');
  
	$(".stripe tr").mouseover(function(){
 	  	$(this).addClass("hover");
	}).mouseout(function(){
	    $(this).removeClass("hover");
	})
})

$(function(){
  // 偶数行の色を設定
  $('.clr td:even').addClass('even');
  
	$(".clr td").mouseover(function(){
 	  	$(this).addClass("hover");
	}).mouseout(function(){
	    $(this).removeClass("hover");
	})
})