////////////////////////////////////////////////////////////////////////////////
//
//	新商品紹介[UTF-8]
//
//	created on:	November 20, 2008;
//	requires:	jquery-x.x.x.js;
//				mark_new.js
//
////////////////////////////////////////////////////////////////////////////////
$(function(){
	//
	//奇数偶数の色分け
	//
	$("#productView ul").each(function(){
		stripe($("li", this).get());
	});
	
	
	//高さ調整用
	var hc = new HeightController();
	
	//
	//	要素の高さを揃える
	//
	$("ul.productCells").each(function(){
		hc.addElementsWithPairing( $("h3",       this).get(), 2 );
		hc.addElementsWithPairing( $("p.detail", this).get(), 2 );
	});
	
	//
	//	20100402 update
	//	ul単位で処理するように修正
	//
	$("ul.relatedProducts").each(function(){
		hc.addElementsWithPairing($("li",this).get(), 4);
	})
});
