
$(function()
	{
		$("#header a[href=recruit1.html]").click(function(e){
			if(document.all) e = event;
				var xp = e.clientX;
				var yp = document.all ? 
						document.compatMode && document.compatMode.match(/CSS/i) ? 
						document.documentElement.scrollTop+e.clientY : document.body.scrollTop+e.clientY : e.pageY ? 
						e.pageY : e.y;
				$("#recruitchild").css({left:(xp-50)+"px",top:(yp-10)+"px"}).toggle("fast",function(){
					$("body").click(function(){$("#recruitchild").hide()});
					});
				return false;
		});


//		if(location.href.match(/tofu.html/))
//		{
//			$('#tofu_set').hide();
//			$('#sectlink a[href$=tofu_guide]').click(function(){
//				$('#tofu_guide').show();
//				$('#tofu_set').hide();
//				});
//			$('#sectlink a[href$=tofu_set]').click(function(){
//				$('#tofu_guide').hide();
//				$('#tofu_set').show();
//				});
//		}
	});


