function init_autocompletion(g_cx, formId, inputId) {
	google.setOnLoadCallback(function() {
		var queryDOM = document.getElementById(inputId);
		if (queryDOM) {
			google.search.CustomSearchControl.attachAutoCompletion(
  				g_cx, queryDOM, formId);
			};
		}
	);
}
