function ilerlet()
	{
		document.getElementById("arac").style.top=document.body.offsetHeight-80+"px"
		if(document.body.offsetWidth>parseInt(document.getElementById("araba").style.left))
			{
				son=parseInt(document.getElementById("araba").style.left)+1
				document.getElementById("araba").style.left=son+"px";
				setTimeout('ilerlet()',10);
			}
		else
			{
				document.getElementById("araba").style.left=-160+"px";
				ilerlet()
			}
	}
function arac()
	{
		document.write('<div style="width:100%; position: absolute; overflow:hidden;"><div id="arac" style="overflow:visible; width:100%; "><img id="araba" SRC="arac.gif" style="position:relative;left:-160px"></div></div>')
		ilerlet();
	}
