// JavaScript Document

jQuery.noConflict();

/*
	画像のサイズを調整 (メイン画像)
*/
function get_img() {
	if (jQuery(".WrapperMainImg img").height() < 280 ){
		jQuery(".WrapperMainImg img").attr("height",jQuery(".WrapperMainImg img").height());
	}
	else {
		jQuery(".WrapperMainImg img").attr("height","280");
	}
}

