jQuery(function($){
	$("#searchButton").click(function(){
		if($("#googleSearchForm input#q").val() == ""){
			alert("キーワードを入力してください。");
		}else{
			$("#googleSearchForm").submit();
		}
	});
});
