	google.load('search', '1.0');
      
      function OnLoad() {

        // create a search control
        var searchControl = new google.search.SearchControl();

        // blog search, open, alternate root
        var options = new google.search.SearcherOptions();
        options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
        options.setRoot(document.getElementById("newsresults"));
		searchControl.setResultSetSize(google.search.Search.LARGE_RESULTSET);

        searchControl.addSearcher(new google.search.WebSearch(), options);  

        // tell the searcher to draw itself and tell it where to attach
        searchControl.draw(document.getElementById("search_control"));
		
		// attach "powered by Google" branding
		google.search.Search.getBranding(document.getElementById("branding"));


        // execute an inital search
        searchControl.execute( "claremont soccer OR wolfpack soccer "  );
      }
      google.setOnLoadCallback(OnLoad, true);
