function showmap(t)
{ if(!img){ img=document.getElementById("map"); }
  if(t.innerHTML.indexOf("McAllister")>=0){ img.src="images/mb.gif"; }else{ return; }
  img.style.visibility="visible";
  movemap(); }

function movemap()
{ img.style.left=(cursor.x-10-img.width)+'px';
  img.style.top=(cursor.y+10)+'px';
  mt=setTimeout("movemap();",10); }

function hidemap()
{ clearTimeout(mt);
  if(img){ img.style.visibility="hidden"; } }

if(document.images)
{ (new Image()).src="images/mb.gif"; }

var img,mt,adds=document.getElementsByTagName("code");

for(var i=0 ; i<adds.length ; i++)
{ adds[i].style.borderBottomStyle="dashed";
  adds[i].style.cursor="crosshair";
  adds[i].onmouseout=hidemap; }