<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion){
md = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="100" height="100" id="mmandl" align="middle">'
+ '<param name="allowScriptAccess" value="sameDomain" />'
+ '<param name="allowFullScreen" value="false" />'
+ '<param name="swliveconnect" value="true">'
+ '<param name="movie" value="global/flash/cursor.swf" /><param name="menu" value="false" /><param name="quality" value="high" /><b><param name="wmode" value="transparent" /></b><param name="bgcolor" value="#ffffff" />	<embed src="global/flash/cursor.swf" menu="false" quality="high" swLiveConnect=true wmode="transparent" bgcolor="#ffffff" width="100" height="100" name="mmandl" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer_de" />'
+ '</object>';
}
document.getElementById('mandl').innerHTML = md;
function addEvent( obj, type, fn ){
if (obj.addEventListener){ obj.addEventListener( type, fn, false ); }else if (obj.attachEvent){
obj["e"+type+fn] = fn;
obj[type+fn] = function() { obj["e"+type+fn]( window.event ); }
obj.attachEvent( "on"+type, obj[type+fn] );
}
}
before_x = 10;
before_y = 50;
maus_x = 0;
maus_y = 0;
addEvent(window,'load',changeVal,true);
addEvent(window,'load',checkClick,true);
addEvent(window,'load',initMandl,true);
function changeVal() {
if (!document.getElementById) return;
var thisInput = document.body;
thisInput.onmousemove = function (evt) {
evt = (evt) ? evt : ((window.event) ? window.event : "");
var elem = (evt.target) ? evt.target : evt.srcElement;
maus_x = evt.clientX;
maus_y = evt.clientY;
}
} 
function followMe(){
before_x = document.getElementById('mandl').offsetLeft;
before_y = document.getElementById('mandl').offsetTop;
if((maus_x+20) > before_x){
disX=((maus_x+20)-before_x)/20;
if(disX>1){
var movie = findeFlash('mmandl');
if (movie) {
movie.TCallLabel("_level0","rechts");
}	
}else{
var movie = findeFlash('mmandl');
if (movie) {
movie.TCallLabel("_level0","standstill");
}
}
}else{
disX=-((before_x-(maus_x+20))/20);
if(disX<(-1)){
var movie = findeFlash('mmandl');
if (movie) {
movie.TCallLabel("_level0","links");
}	
}else{
var movie = findeFlash('mmandl');
if (movie) {
movie.TCallLabel("_level0","standstill");
}
}
}
document.getElementById('mandl').style.left=(before_x+disX)+"px";
if((maus_y+10) > before_y){
disY=((maus_y+10)-before_y)/20;
}else{
disY=-((before_y-(maus_y+10))/20);
}
document.getElementById('mandl').style.top=(before_y+disY)+"px";	
}
function initMandl(){
walker = window.setInterval("followMe()", 1);
}
function checkClick() {
if (!document.getElementById) return;
var thisInput = document.body;
thisInput.onmousedown = function (evt) {
var movie = findeFlash('mmandl');
if (movie) {
movie.TCallLabel("_level0","sprung");
}
}
} 
function findeFlash (flash) {
if (document.all) {
if (document.all[flash]) {
return document.all[flash];
}
if (window.opera) {
var movie = eval(window.document + flash);
if (movie.SetVariable) {
return movie;
}
}
return;
}
if(document.layers) {
if(document.embeds) {
var movie = document.embeds[flash];
if (movie.SetVariable) {
return movie;
}
}
return;
}
if (!document.getElementById) {
return;
}
var movie = document.getElementById(flash);
if (movie.SetVariable) {
return movie;
}
var movies = movie.getElementsByTagName('embed');
if (!movies || !movies.length) {
return;
}
movie = movies[0];
if (movie.SetVariable) {
return movie;
}
return;
}
//-->
