/////////////////////////////////////////////////////////////////
//
// Designed and coded by Michael Mike Neubig, www.LifeInPlace.org
//
// implements a liquid design 
//
// tested under 
//   Mozilla 1.7.12 
//   Firefox 1.5
//   IE      6.0.2800.1106.xpsp1.020828-1920
//
// semi-colons are not nec., but allow xemacs to 
// font-lock color correctly
//
// 2005-11-05 first version 
//
/////////////////////////////////////////////////////////////////

function A_prep_meta(){
  var d;
  
  d = document.getElementById("metalink");
  d.onmouseover = function(){ document.getElementById('metapanel').style.visibility='visible';return false;};
  d.onmouseout  = function(){ document.getElementById('metapanel').style.visibility='visible';return false;};

  d = document.getElementById("metapanel");
  d.onmouseover = function(){ this.style.visibility='visible';return false;};
  d.onmouseout  = function(){ this.style.visibility='hidden';return false;};
}

function A_prep(){
  A_prep_meta();
}
