$(document).ready(function(){
	$('.nav').click(function(){
	     $('#mark').fadeOut("medium");
	   });
	$('#close_drawer').click(function(){
	     $('#mark').fadeIn("medium");
	     $('#author_nav').css('z-index', '10');
		 $('#subjects_nav').css('z-index', '-1');
		 $('#gold_nav').css('z-index', '-2');
		 $('.card').css('z-index', '1');
	   });
	$('#author_nav').click(function(){
	     $('.card').hide();
	     $('#author_card').show();
	     $('.nav').css('z-index', '-1');
	     $(this).css('z-index', '10');
	   });
	$('#subjects_nav').click(function(){
	     $('.card').hide();
	     $('#subjects_card').show();
	     $('.nav').css('z-index', '-1');
	     $(this).css('z-index', '10');
	   });
	$('#gold_nav').click(function(){
	     $('.card').hide();
	     $('#gold_card').show();
	     $('.nav').css('z-index', '-1');
	     $(this).css('z-index', '10');
	   });
	 $("#footer.perm_footer").hover(
		function() {
			$('#footer').animate({
				marginTop: 0,
				height: 420
				}, 800);
			},
		function() {
				$('#footer').animate({
					marginTop: 190,
					height: 107
					}, 500);
		 }
	);
});


