google.load('search', '1.0', {"language" : "ja"});
function OnLoad() {
	var searchFormElement = document.getElementById("search_form");
	var searchResultElement = document.getElementById("search_result");

	var searchControl = new google.search.SearchControl();
	searchControl.setResultSetSize(google.search.Search.SMALL_RESULTSET);
	var options = new google.search.SearcherOptions();
	options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
	options.setRoot(searchResultElement);
	options.setNoResultsString(google.search.SearchControl.NO_RESULTS_DEFAULT_STRING)
	var siteSearch = new google.search.WebSearch();
	siteSearch.setUserDefinedLabel("慶應大学クリニカルリサーチセンター");
	siteSearch.setUserDefinedClassSuffix("siteSearch");
	siteSearch.setSiteRestriction("012126433651362990787:jphkv9c5wko");
	searchControl.addSearcher(siteSearch, options);

	var drawOptions = new google.search.DrawOptions();
	drawOptions.setDrawMode(google.search.SearchControl.DRAW_MODE_LINEAR);
	searchControl.draw(searchFormElement, drawOptions);

	$("input[class=gsc-search-button]").attr("rel","#search_box");
	$("input[rel]").overlay({expose: '#000000',speed: 'fast'});
}
google.setOnLoadCallback(OnLoad, true);

