var thebuddie = {
	input:"",
	pattern:"38384040373937396665",
	clear:setTimeout('thebuddie.clear_input()',2000),
	load: function(link) {
		window.document.onkeydown = function(e) {
			thebuddie.input+= e ? e.keyCode : event.keyCode;
			if (thebuddie.input == thebuddie.pattern) {
				thebuddie.code(link);
				clearTimeout(thebuddie.clear);
				return;
				}
			clearTimeout(thebuddie.clear);
			thebuddie.clear = setTimeout("thebuddie.clear_input()",2000);
			}
		},
	code: function(link) { 
		//document.body.style.backgroundImage = "url(<?php echo get_bloginfo('template_directory'); ?>/images/the-buddie-bg.jpg)";
		document.getElementById("thebuddie").src="http://francisdelapena.com/wp-content/themes/v3/images/thebuddie.png";
	},
	clear_input: function() {
		thebuddie.input="";
		clearTimeout(thebuddie.clear);
		}
}
thebuddie.load();
