//load youtube videos 

window._uds_vbw_donotrepair = true;
//var myTimer = 0;
var vidBar = document.getElementById("videoBar-bar");
 function LoadVideoBar() {
                
	var videoBar;
		
	var options = {
		largeResultSet : true,
		resultCount : 3,
		thumbnailSize : GSvideoBar.THUMBNAILS_SMALL,
		manyResults : true,
		closeText: "Close Video",
		horizontal : false,
		autoExecuteList : {
		  cycleTime : GSvideoBar.CYCLE_TIME_EXTRA_SHORT,
		  cycleMode : GSvideoBar.CYCLE_MODE_LINEAR,
		  executeList : ["ytchannel:RepJoeWalsh"]
		}
	  }

	videoBar = new GSvideoBar(document.getElementById("videoBar-bar"),
							  GSvideoBar.PLAYER_ROOT_FLOATING,
							  options);

	}
	// arrange for this function to be called during body.onload
	// event processing
	GSearch.setOnLoadCallback(LoadVideoBar);

