////////////////////////////////////////////////////////////////////////////////
//
//	[ファイル名]	list.js
//	
//	[文字コード]	utf-8
//	
//	[概要]	
//
////////////////////////////////////////////////////////////////////////////////
$(function(){
	$("div#mainContent table").each(function(){
		$("tr:even", this).each(function(){
			$(this).addClass("even");
		});
	});
});
