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