	function LoadNewsBar() {
     	var newsBar;
      	var options = {
        largeResultSet : false,
        title : "In the news - Live feed",
        horizontal : false,
        autoExecuteList : {
          executeList : ["Apple", "Google", "Microsoft", "Reuters"]
        }
      }

      newsBar = new GSnewsBar(document.getElementById("newsBar-bar"), options);
    }
    // arrange for this function to be called during body.onload
    // event processing
    	GSearch.setOnLoadCallback(LoadNewsBar);
