// 間取り図など大きい画像をアップしたときに自動でリサイズするJS

window.onload = function(){
   $("img", $("div.detail, div.entry")).each(function(){
		var originalWidth = this.width;
		if(originalWidth > 540){
			this.width = 540;
			this.height = this.height * (540 / originalWidth);
		}
	});
};