$(function(){
	$('img.photo_frame').removeAttr('alt');

	if($('li#pic01').height() < 250){
		$('li#pic01').height('250px');
	}

	// アイコン
	var odj = $('h3 span');
	var type = odj.html();
	
	if(type == '店舗・事務所・倉庫'){
		odj.html('<img src="/search/site/img/icon_office.gif" />');
	}else if(type == '駐車場'){
		odj.html('<img src="/search/site/img/icon_parking.gif" />');
	}else if(type == 'レンタル納戸'){
		odj.html('<img src="/search/site/img/icon_nando.gif" />');
	}else if(type == 'トランクルーム'){
		odj.html('<img src="/search/site/img/icon_trunkroom.gif" />');
	}
	$('h3 span img').attr('alt',type);

	if($('#map,#pano,#mymap').size() < 1){
		$('div.button:eq(0)').remove();
	}
});

