//var cloudXtemp, pointIcon;
//var cloudX = -630;
//var windowWidth = $(window).width();

$(document).ready(function() {
	
	setupNav();
	
	$(window).resize(function(){
		windowWidth = $(window).width();
	});
	
	var raptorString = new Array(73, 84, 83, 82, 65, 80, 84, 79, 82, 84, 73, 77, 69);
	var raptorIndex = 0;
	$(document).keydown(function(e) {
		if (e.keyCode == raptorString[raptorIndex]) {
			raptorIndex++;
			if (raptorIndex == raptorString.length) {
				$("#raptor").show();
			}
		} else {
			raptorIndex = 0;
		}
	});
	
});









