$(document).ready(function(){
	// 商品情報高さ調整
	var max = 0;
	$('.RcmHead').each(function(){
		if ($(this).height() > max)
			max = $(this).height();
	});
	$('.RcmHead').height(max); 
});

function Change(key) {
	$('#' + key).slideToggle('slow');
}
