	  $(function(){
				 $('#go_show').click(function(){
							window.location.href='./userinfo.php?auth=teacher';
							$('#adt_4').hide();
							$('#mask').hide();
							 });
				 $('#go_close').click(function(){
								$('#adt_4').hide();
								$('#mask').hide();
											   });
				 $('#item_show').click(function(){
							$("#mask").fadeIn("slow");
											   })
				 $('#close').click(function(){
										  $("#adt_1").fadeOut("slow");
										  $("#adt_2").fadeOut("slow");
										  $("#adt_3").fadeOut("slow");
										  $("#mask").fadeOut("slow");
										  })
				  $('#adt_2').click(function(){
										  $("#adt_2").fadeOut("slow");
										  $("#mask").fadeOut("slow");
										  })
				   $('#adt_3').click(function(){
										  $("#adt_3").fadeOut("slow");
										  $("#mask").fadeOut("slow");
										  })
			
	  function show(a){
		$("#mask").fadeIn("slow");
		$("#adt_"+a).fadeIn("slow");
	  }
				 });