function StandAloneVideoConfiguration() {
	this.videoArray = new Array();
	this.vidString = null;
	this.vidContext = null;
	this.slateSize = null;
	this.videoDivId = null;
	this.startPoint = 0;
	this.advanceNextAutomatically = false;
	this.loadSynchUnit = false;
	
	// handlers
	this.videoAdvancementHandler = new function() { };
	this.bootErrorHandler = new function() { };
	this.controlsHandler = new function() { };
	this.updateContentHandler = new function() { };	
	this.errorSlateHandler = new function() { };
	this.startSlateHandler = new function() { };
	this.endSlateHandler = new function() { };
}
