Mission.tasks(2).extend ( {

	setup : function ( cb ) {
		Portal.loadPage ( this, 'flash_holder/', null, cb );
	},
	start : function ( cb ) {
		setStoppableTimeout ( this, function ( ) {
			setupScenes( {
				'scene5' : {
					file : 'Location5' + ( !!Portal.getMetaData("user").safe ? "_safe" : "" ),
					id : 'scene_5',
					audio : '8005.mp3',
					next : 'scene6'
				},
				'scene6' : {
					file : 'Location6' + ( !!Portal.getMetaData("user").safe ? "_safe" : "" ),
					id : 'scene_6',
					audio : '8006.mp3',
					next : cb
				}
			} );
		}, 500 );
	}

} );

