window.setTimeout("Wechsel()", 200);
function Wechsel () {
	if (navigator.platform != "MacPPC") {
		if (document.getElementById){
			document.getElementById("animation").filters.revealTrans.Apply();
			eval ('document.getElementById("animation").src = "/grafik/deutsch/'+kategorie+'_slogan.gif"');
			document.getElementById("animation").filters.revealTrans.Play();
		} else if (document.all){
			document.all.animation.filters.revealTrans.Apply();
			eval ('document.all.animation.src = "/grafik/deutsch/'+kategorie+'_slogan.gif"');
			document.all.animation.filters.revealTrans.Play();
		}
	}
}