﻿/**
 *  Video Functions
 */

var Video = {
	vObj: null,
	init: function (vid) {
		this.vObj = vid;
		this.initPlayer();
		this.vObj.URL = "http://mfile.akamai.com/33693/live/reflector:52385.asx?bkup=52636";
	},
	initPlayer: function() {
	    this.vObj.uiMode = "mini";
	    this.vObj.settings.volume = 100;
	},
	loadURL: function(url) {
	    this.vObj.URL = url;
	}
};
