var arrPos = Array();
		arrPos['admntr'] = Array(-10, 145);
		arrPos['libr'] = Array(130, 105);
		arrPos['schmang'] = Array(-30, 350);
		arrPos['schvalt'] = Array(-20, 315);
		arrPos['schdegs'] = Array(50, 475);
		arrPos['stuhl'] = Array(120, 375);
		arrPos['faclt'] = Array(95, 245);
		arrPos['rechl'] = Array(275, 385);
		arrPos['masprg'] = Array(245, 475);
		arrPos['homeroom'] = Array(-5, 545);
		
		$(function(){
			$('#houseMap area').click(function(){
				goUrl = $(this).attr('nohref');
				$('#bio').focus();
				if(goUrl == '#') {
					alert('Coming Soon!');
					return false;
				}
				window.location.href = goUrl;
				return false;
			});
			$('.blkbuil img').click(function(){
				//alert('ok');
			});
			/*$('#houseMap area').hover(function(){
				$('.tips').hide();
				tipname = '.' + $(this).attr('href');
				//alert(tipname);
				//alert($(this).offset().top);$(this).offset().top $(this).offset().left + 
				t = arrPos[$(this).attr('href')][0];
				l = arrPos[$(this).attr('href')][1];
				$(tipname).css({top: t+'px', left: l+'px'}).show();
			},
			function(){
				tipname = '.' + $(this).attr('href');
				$('.tips').hover(function() {
					$(tipname).show();
				}, function () {
					$('.tips').hide();
				});
				//$('.tips').hide();
			});*/
		});
		
		function areaOver(obj){
			eInd = $('.idrplst').css('zIndex');
			fInd = $('.blklob').css('zIndex');
			if(eInd > fInd){
				$('.blklob').css({'zIndex': eInd});
				$('.idrplst').css({'zIndex': fInd});
			}
			
			$('.tips').hide();
			hrfclsname = $(obj).attr('href');
			tipname = '.' + hrfclsname;
			t = arrPos[hrfclsname][0];
			l = arrPos[hrfclsname][1];
			$(tipname).css({top: t+'px', left: l+'px'}).show();
			
			clearTimeout(timer);
		}
		var timer;
		function clearTip(){
			$('.tips').hide();
		}
		function areaOut(obj){
			tipname = '.' + $(obj).attr('href');
			$('.tips').hover(function() {
				clearTimeout(timer);
				$(tipname).show();
			}, function () {
				$('.tips').hide();
			});
			
			timer = setTimeout("clearTip()", 1000);
		}