Mission.tasks(0).extend ( {

	setup : function ( cb ) {
		Portal.loadPage ( this, 'flash_holder/', null, cb );
	},
	start : function ( cb ) {
		setStoppableTimeout ( this, function ( ) {
			setupScenes( {
				'scene1' : {
					file : 'Location1',
					id : 'scene_1',
					audio : '8001.mp3',
					next : 'scene2'
				},
				'scene2' : {
					file : 'Location2' + ( !!Portal.getMetaData("user").safe ? "_safe" : "" ),
					id : 'scene_2',
					audio : '8002.mp3',
					next : cb
				}
			} );
		}, 500 );
	}

} );

