Mission.tasks(1).extend ( {

	setup : function ( cb ) {
		Portal.loadPage ( this, 'flash_holder/', null, cb );
	},
	start : function ( cb ) {
		setStoppableTimeout ( this, function ( ) {
			setupScenes( {
				'scene3' : {
					file : 'Location3' + ( !!Portal.getMetaData("user").safe ? "_safe" : "" ),
					id : 'scene_3',
					audio : '8003.mp3',
					next : 'scene4'
				},
				'scene4' : {
					file : 'Location4',
					id : 'scene_4',
					audio : '8004.mp3',
					next : cb
				}
			} );
		}, 500 );
	}

} );
