/**
 * @author brownm01
 * @classDescription MasterClass Object defintion
 * This class is used to launch the Sport Masterclass videos
 * via a videoID String passed in to startVideo().
 */
function MasterClass(){	
}

/**
 * @param {String} videoID The ID of this video class as a string
 */
MasterClass.prototype.startVideo = function(videoID){
	launchAVConsoleStory(videoID);
}