$(document).ready(function() {

	$("#dangerZone").mouseenter(function(){
		$("#dangerZone ul li.hidden").show();
		$("#dangerZone ul li#games").removeClass('hidden');
		$("#dangerZone ul li#about").removeClass('hidden');
		$("#dangerZone ul li#notes").removeClass('hidden');
		$("#dangerZone ul li#videos").removeClass('hidden');
		$("#dangerZone ul li#ohhai").removeClass('hidden');

	}).mouseleave(function(){
		$("#dangerZone ul li.hidden").hide();
	});

	$("#watZone").mouseenter(function(){
		$("#wat").show();
	}).mouseleave(function(){
		$("#wat").hide();
	});
	
	
	
	$("#me").mouseenter(function() {
		$("#snaps").show();
	});

	$("#snaps").mouseleave(function() {
		$("#snaps").hide();
	});
	
	$('li#notes a.thisCategory').mouseenter(function() {
		$("#notes").show();
	});
	$("#notes").mouseleave(function() {
		$("#notes").hide();
	});
	
	$('li#games a.thisCategory').mouseenter(function() {
		$("#games").show();
	});

	$('#games').mouseleave(function() {
		$("#games").hide();
	});
	
	$('#commentZone').mouseenter(function() {
	  $('#comments').animate({
	    right: '+=350'
	  }, 300, 'easeOutExpo', function() {
	    $('#shutYourFace').show();
	  });
	});

	$('#shutYourFace').mouseenter(function() {
	  $('#comments').animate({
	    right: '-=350'
	  }, 300, 'easeInExpo', function() {
	    $('#shutYourFace').hide();
	  });
	});
	
});
