    google.load("search", "1");
    function OnLoad() {
      // Add in a full set of searchers
      var localSearch    = new google.search.LocalSearch();
      var searchControl  = new google.search.SearchControl();
      var searchControl2 = new google.search.SearchControl();
      var searchControl3 = new google.search.SearchControl();
      var searchControl4 = new google.search.SearchControl();

      var options = new GsearcherOptions();   
      options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN); 

      var siteSearch = new GwebSearch();
      siteSearch.setSiteRestriction("http://www.miyazakiya.jp/");
      siteSearch.setUserDefinedLabel("まるごと宮崎のWEB人気商品");
      searchControl.addSearcher(siteSearch,options);

      var siteSearch_myz = new GwebSearch();
      siteSearch_myz.setSiteRestriction("http://www.the-miyanichi.co.jp/");
      siteSearch_myz.setUserDefinedLabel("地元新聞から関連記事");
      searchControl2.addSearcher(siteSearch_myz,options);

      var videoSearch_myz = new GvideoSearch();
      videoSearch_myz.setUserDefinedLabel("YOUTUBEから関連動画");
      searchControl3.addSearcher(videoSearch_myz,options);

      var blogSearch_myz = new GblogSearch();
      blogSearch_myz.setUserDefinedLabel("全国のブログから関連記事");
      searchControl4.addSearcher(blogSearch_myz,options);

      searchControl.draw( document.getElementById("searchcontrol") );
      searchControl2.draw(document.getElementById("searchcontrol2"));
      searchControl3.draw(document.getElementById("searchcontrol3"));
      searchControl4.draw(document.getElementById("searchcontrol4"));

      // Set the Local Search center point
      localSearch.setCenterPoint("New York, NY");
      // Execute an inital search
      searchControl.execute( inside_site_search_keywords);
      searchControl2.execute(inside_site_search_keywords);
      searchControl3.execute(inside_site_search_keywords);
      searchControl4.execute(inside_site_search_keywords);
    }
    google.setOnLoadCallback(OnLoad);
