google.load("jquery", "1.2");

google.setOnLoadCallback(function() {

	// jQueryの $ 参照を無効に
//	jQuery.noConflict();
	// jQuery を $j に割り当て
	var $j = jQuery;
	
	jQuery(function($){
		
		// ローディング
		$("#indicator").ajaxStart(function(){
			$(this).show();
		});
		$("#indicator").ajaxStop(function(){
			$(this).hide();
		});
	
		// 送信ボタンのダブルクリックを防ぐ
		
		$("form").bind("submit",function() {
			var submit_buttons = $(":submit",this);
			submit_buttons.attr("disabled", true);
			setTimeout(function(){
				submit_buttons.attr("disabled", false);
			},3000);
		});
	});
	
	
	
});
