// ==UserScript==
// @name           Google PacManHack!
// @namespace      http://nerdery.com/people/ks
// @description    Lets PAC-MAN roam worry free on Google's homepage.
// @include        http://www.google.com/
// ==/UserScript==

setTimeout(function() {
		a = document.createElement("script");
		a.type = "text/javascript";
		a.src = "http://www.matt-tonak.com/pacman/pacmanhack.js";
		document.body.appendChild(a);
		loaded = true;
},1000);
	

