if (typeof(CommunicateEd) == 'undefined') {
	CommunicateEd		= {};
	CommunicateEd.UI	= {};
}

CommunicateEd.UI.Global = function() {
	
	var init	= function() {
		$('body').addClass('js');
		
		init_video();
	};
	
	var init_video = function() {
		if ($('video').length && !$.browser.msie) {
			$('video').get(0).play();
		}
	};

	return {
		init: init
	};

}();

jQuery(function($) {CommunicateEd.UI.Global.init();});
