Mission.tasks(1).extend ( {

	setup : function ( cb ) {
		Portal.loadPage ( this, 'fakebook/event/', null, cb );
		window.tmi = window.tmi || {};
		window.tmi.SFX = window.tmi.SFX || {};
		window.tmi.SFX.outside_club = new SoundStage.Sound( '/audio/tmi/club_exterior_crowd.mp3', { noSubtitles : true, repeat : true } );
		window.tmi.SFX.at_door = new SoundStage.Sound( '/audio/tmi/music_club_exterior_phone_effect.mp3', { noSubtitles : true, repeat : true } );
	},
	start : function ( cb ) {
		setStoppableTimeout ( this, function ( ) {
			loadConversation ( '/scripts/tmi/conversations/research.js', function ( s ) {
				if ( s ) {
					var audio = new Audio ( window.scripts.RESEARCH, true, function ( ) { cb(); } );
				}
			} );
		}, 500 );
	}

} );
