Mission.tasks(3).extend ( {

	setup : function ( cb ) {
		Portal.loadPage ( this, 'catchup-final/', function ( ) { cb(); } );
	},
	start : function ( cb ) {
		loadScript ( '/scripts/chat/audio.js', function ( s ) {
			loadConversation  ( '/scripts/whitesmokeday/conversations/exasperation.js', function ( s ) {
				window.exasperation = new Audio ( window.scripts.EXASPERATION, true, function ( ) {
					loadScript ( '/scripts/chat/chatclient.js', function ( s ) {
						loadConversation ( '/scripts/whitesmokeday/conversations/closing_chat.js', function ( s ) {
							window.main_chat = new Chat ( "White Smoke Admins" );
							window.chatClient = window.main_chat.getClient();
							window.main_chat.play ( window.scripts.CLOSING_CHAT, function ( ) {
								cb();
							} );
						} );
					} );
				} );
			} );
		} );
	}

} );

