/*!
 * CarlosButler.com JavaScript
 * http://www.carlosbutler.com
 * 
 * Copyright Carlos Butler 2010
 *
 * Date: Sunday May 24 13:23:34 +0000 2010 (one month untill my birthday!!!!!!!)
 */

function keepBg()
{
	document.getElementById('selected').style.backgroundColor = '#FFF';
}

/********** Popup *********/
var newWindow = null;
function popUpWindow(url, strWidth, strHeight)
{
	var tools = "resizable=no,toolbar=no,location=no,scrollbars=yes,width="+strWidth+",height="+strHeight+"";
	newWindow = window.open(url, 'newWin', tools);
	newWindow.focus();
}

/********** My Konami Code *********/
if(window.addEventListener)
{
	var woopwoop = [], myShuNO = "38,38,40,40,37,39,37,39,66,65";
	window.addEventListener("keydown", function(e)
	{
		woopwoop.push(e.keyCode);
		if (woopwoop.toString().indexOf(myShuNO)>=0)
		{
			woopwoop = [];
			alert('This is what happens if you don\'t sleep for 40ish hours - honestly I can\'t even remember the picture being taken.');
			popUpWindow('http://carlosbutler.com/media/meAgain.jpg', '500', '375');
		}
	}, true);
}

