// JavaScript Document

function Einblenden(FaderID) {
	Effect.Appear(FaderID, { duration: 0.5, from: 0.0, to: 1.0, queue: { position: 'end', scope: FaderID + 'Que', limit: 2 }} );
}

function Ausblenden(FaderID) {
	Effect.Fade(FaderID, { duration: 0.5, from: 1.0, to: 0.0, queue: { position: 'end', scope: FaderID + 'Que', limit: 2 }} );
}