
x=-100000
y=-100000

function doIt() {
	container.style.left=0
	container.style.top=0
	haze.style.backgroundImage="URL("+dust.src+")"
	data="<DIV style='float:left;width:"+container.offsetWidth+";height:"+container.offsetHeight+"'></DIV>"
	document.body.insertAdjacentHTML("afterBegin",data)
	moveIt()
}

function moveIt() {
	x=x+2
	y=y-1
	haze.style.backgroundPosition=x+" "+y
	setTimeout("moveIt()",32)
}

