		window.onload=function() {
			MyObjectDiv=document.getElementById("flash_logo");
			
			meinEmbed=document.getElementsByTagName("embed")[0];
			meinObject=document.getElementById("multitain_logomotion");
			//~ alert(meinObject.width + " - " + meinEmbed.width);
			//~ alert(meinObject.width + " - " + meinEmbed.width);
			setTimeout("upInTheCorner()",6000);		
}	
		upInTheCorner=function() {
			MyObjectDiv.removeChild(meinObject);
			MyObjectDiv.height=(180*165/831)+2+"px";
			MyObjectDiv.width="182px";
			kleinesLogo=new Image();
//			kleinesLogo.src="831-165-180.jpg";
			kleinesLogo.src="multitain_logo.jpg";
			MyObjectDiv.appendChild(kleinesLogo);
//			MyObjectDiv.innerHTML="wasneues";
			MyObjectDiv.className="abInDieEcke";
			kleinesLogo.alt="multitain logo";
			kleinesLogo.onclick=restart;
		}
		reste=function() {
			meinObject.width="180px";
			meinObject.height=180*165/831+"px";
			meinEmbed.width="180px";
			meinEmbed.height=180*165/831+"px";

		}
		restart=function() {
			MyObjectDiv.removeChild(kleinesLogo);
			MyObjectDiv.appendChild(meinObject);
			MyObjectDiv.className="";
			setTimeout("upInTheCorner()",6000);		
		}
