<!--
var htimer;
var over1=0;
var over2=0;
var ghostno=0;

function over(no) {
 document["menu"+no].src="menu/menu"+no+"o.gif";
 ghostno=no;
 over1=1;
 htimer=setTimeout("isbubble("+no+")",1000);
 document["bubble"].style.top=64*no-32+61;
 document["ghost"].style.top=64*no-64+61;
 document["bubble"].src="menu/menu"+no+"b.gif";
}

function out(no) {
 over1=0;
 change(no);
}

function isbubble(no) {
 ghostht.href=eval("ht"+no).href;

 document["ghost"].style.visibility="visible";
 document["bubble"].style.visibility="visible";
}

function overghost() {
 over2=1;
 change(ghostno);
}

function outghost() {
 over2=0;
 change(ghostno);
}

function change(no) {
 if (over1==0&&over2==0) {
  if (htimer) clearTimeout(htimer);
  document["menu"+no].src="menu/menu"+no+".gif";
  document["bubble"].style.visibility="hidden";
  document["ghost"].style.visibility="hidden";
 } else {
  document["menu"+no].src="menu/menu"+no+"o.gif";
  document["bubble"].style.visibility="visible";
  document["ghost"].style.visibility="visible";
 }
}

//-->
