Mission.tasks(0).extend ( {

	setup : function ( cb ) {
		Portal.loadPage ( this, 'max/', null, function(){
			cb();
		} );
	},
	start : function ( cb ) {
		setStoppableTimeout ( this, function ( ) {
			if ( window.main_chat ) return;
			window.main_chat = new Chat ( "Max & Jo" );
			window.chatClient = window.main_chat.getClient();
			loadConversation ( '/scripts/cctv/conversations/intro.js', function ( s ) {
				if ( s ) {
					window.main_chat.play ( window.scripts.INTRO, function ( ) {
						cb();
					} );
				}
			} );
		}, 500 );
	}

} );
