var i = -3000;
	var d = 0;
	var u = true;
	function load()
	{	
		Animation();
	
	for(var f = 0; f < document.getElementsByClassName("amibild").length; f++)
	{
			document.getElementsByClassName("amibild")[f].onmouseover  = function()
		{
			u = false;
			
		}
		
		document.getElementsByClassName("amibild")[f].onmouseout  = function()
		{
			u = true;
		}
	}
	
	}
	
	
	
	function Animation()
	{
	if(u)
	{
		i += 0.2;
	}
			
			if(i > 870)
			{
				i = -4200;
			}
		
		document.getElementById("ami1").style.marginLeft  = i+"px";
		setTimeout('Animation()', d);
	}
