setTimeout(function() {
	img = document.getElementById("uber");
	img.onmouseover = function() {
		$("#uber").animate( {
			top: Math.floor(Math.random()*document.height/2),
			left: Math.floor(Math.random()*document.width/2)
			}, "fast")
		document.getElementById("lololol").innerText = "lololol!";
		}
	}, 2000)
//; this.width = Math.floor(Math.random()*document.width;}


