google.load("jquery", "1.4.4");

function pc_initialize() {
	$.ajaxSetup({
		timeout: '60000' // スマートフォンやiPadでの利用を想定
	});
}

function adjustLayout(target_id, base_id, offset) {
	offset = (offset) ? offset : 0;
	if ($('#' + target_id).height() < $('#' + base_id).height() + offset) {
		$('#' + target_id).height($('#' + base_id).height() + offset);
	}
	google.setOnLoadCallback(function() {
		if ($('#' + target_id).height() == $('#' + base_id).height() + offset) {
			return;
		} else if ($('#' + target_id).height() < $('#' + base_id).height() + offset) {
			$('#' + target_id).height($('#' + base_id).height() + offset);
		}
	});
}

google.setOnLoadCallback(pc_initialize);


