google.load('search', '1.0',{"nocss":1});
      
      function OnLoad() {
		  
		 
        // create a search control
        var searchControl = new google.search.SearchControl();

        // web 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.NewsSearch(), 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 ca OR claremont california OR claremont colleges -NH -Berkeley"
		
      }
      google.setOnLoadCallback(OnLoad, true);


