// The language and search portion was based on a sample that is copyright (c) Google. 

	google.load("search", "1");
    
    function searchInitialize() { 
			this.searchControl = new google.search.SearchControl;
			searchControl.addSearcher(new google.search.ImageSearch());
			
			var drawOptions = new google.search.DrawOptions();
			drawOptions.setDrawMode(GSearchControl.DRAW_MODE_TABBED);
			this.searchControl.setNoResultsString(GSearchControl.NO_RESULTS_DEFAULT_STRING);
			this.searchControl.draw(this.imagesDiv);
 
			this.searchControl.execute(textToSearch);

	}
	
