document.getElementById('stylesheet').href = "/styles.css";

$(document).ready(function(){

	$('div.page').slideToggle(500);
	$('a.nav').click(function(){
		$('div.page').slideToggle(150);
	});
	$('#output').fadeOut(0);
	
	$('#contactme').ajaxForm({ 
	   target: '#output', 
	   success: function() { 
	       $('#output').fadeIn('slow');
	   }
	   
	}); 
   
	$('a').hover(
	function() {
	  $(this).animate({ color: '#777777' }, { queue:false, duration:200 });
	},function() {
	  $(this).animate({ color: 'white' }, { queue: false, duration:200 });
	});
	
});

if(window.addEventListener) {
  var kkeys=[],
  konami="38,38,40,40,37,39,37,39,66,65,13";
  window.addEventListener("keydown",function(e){
    kkeys.push(e.keyCode);
    if(kkeys.toString().indexOf(konami)>=0) {
      window.location="http://mack.im/page/konami";
    }
  },true);
}


