
/*----------------------------------------------------------------------------------*/
/* Fichero: buscador.js																*/
/* Fecha: 	23/09/2008																*/
/* Autor: 	Francisco Javier Jiménez Galeote										*/
/* E-Mail: 	ficojg@gmail.com														*/
/*----------------------------------------------------------------------------------*/
/* Proyecto: Artemuseos.com						  								    */
/*----------------------------------------------------------------------------------*/
/* Scrip del buscador ajax de google												*/
/*----------------------------------------------------------------------------------*/
	google.load("search", "1");

    function OnLoad() {
      var searchControl = new google.search.SearchControl();
      var siteSearch = new GwebSearch();
      var options = new GsearcherOptions();
      options.setExpandMode(GSearchControl.EXPAND_MODE_OPEN);
      siteSearch.setUserDefinedLabel("Artemuseos.com");
      siteSearch.setUserDefinedClassSuffix("siteSearch");
      siteSearch.setSiteRestriction("artemuseos.com");
      searchControl.addSearcher(siteSearch, options);
      searchControl.addSearcher(new GnewsSearch());
      searchControl.addSearcher(new GwebSearch());
      searchControl.draw(document.getElementById("searchcontrol"));
    }
    google.setOnLoadCallback(OnLoad);