google.load('search', '1');

function OnLoad() {
  var customSearchControl = new google.search.CustomSearchControl('008710907999040031101:ktrslzjwmes');
  customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
  
  var options = new google.search.DrawOptions();
  options.setSearchFormRoot(document.getElementById("headerSearch"));

  // Draw the control in content div
  customSearchControl.draw(document.getElementById("searchResults"), options); 
  
  // run a query
  if (searchQuery != "")
	customSearchControl.execute(searchQuery);
  
  $("input.gsc-search-button").click(function(){
		var location = "" + window.location + "";
		if (location.search(/search\.aspx\?/i) < 0)
			window.location = searchUrl + escape($("input.gsc-input").val());
	});
}

google.setOnLoadCallback(OnLoad);
