//
// OnLoad
//
$(function(){
	// ニュースエリアの高さ調整
	if ($('#product_overview').val() != undefined) {
		$('#news .body').height($('#product_overview').height() - 83);
	} else {
		$('#news .body').height($('.main').height() - 63);
	}
});
