	    function OnLoad() {
	      // Create a search control
	      var searchControl = new GSearchControl();

	      // site restricted web search with custom label
	      // and class suffix
	      var siteSearch = new GwebSearch();
	      siteSearch.setUserDefinedLabel("rally.ie");
	      siteSearch.setUserDefinedClassSuffix("siteSearch");
	      siteSearch.setSiteRestriction("rally.ie");

	      var options = new GsearcherOptions();
          options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
	      searchControl.addSearcher(siteSearch, options);

	      // standard, unrestricted web search
	      searchControl.addSearcher(new GwebSearch(), options);

	      // standard, unrestricted video search
	      searchControl.addSearcher(new GvideoSearch(), options);

	      // tell the searcher to draw itself and tell it where to attach
          // draw in tabbed layout mode
          var drawOptions = new GdrawOptions();
          drawOptions.setDrawMode(GSearchControl.DRAW_MODE_TABBED);
	      
	      searchControl.draw(document.getElementById("searchcontrol"), drawOptions);

	    }

	    GSearch.setOnLoadCallback(OnLoad);


