<!--
var submenu=new Array()

// home
  submenu[0]=''
// about matric
  submenu[1]=''
// card
  submenu[2]='<span class="topMenuSub"><a href="http://www.card.iastate.edu/" class="topMenuSub" style="margin-left:100px">CARD - Center for Agricultural and Rural Development</a></span>'
// publications
  submenu[3]='<span class="topMenuSub"><a href="http://www.card.iastate.edu/publications/index.aspx?show=query" class="topMenuSub" style="margin-left:175px">Search Publications</a><a href="http://www.matric.org/publications.aspx" class="topMenuSub">Latest Publications</a></span>'
// books
  submenu[4]=''
// presentations
  submenu[5]=''
// articles & news
  submenu[6]='<span class="topMenuSub"><a href="http://www.matric.org/articles/" class="topMenuSub" style="margin-left:470px">Articles</a><a href="http://www.matric.org/articles/briefs.aspx" class="topMenuSub">News Briefs</a><a href="http://www.matric.org/articles/releases.aspx" class="topMenuSub">News Releases</a></span>'
// staff directory
  submenu[7]=''

//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
  var delay_hide=3000;

function shownavl2(thetext){
  var menuobj=document.getElementById? document.getElementById("linklvl2") : document.all? document.all.linklvl2 : document.layers? document.dep1.document.dep2 : "";
  clear_delayhide();
  if (document.getElementById||document.all)
    menuobj.innerHTML=thetext;
  else if (document.layers){
    menuobj.document.write(thetext);
    menuobj.document.close();
  }
}

function resetl2(e){
  delayhide=setTimeout("shownavl2(submenu[0])",delay_hide);
}

function clear_delayhide(){
  if (window.delayhide)
  clearTimeout(delayhide);
}

function contains_ns6(a, b){
  while (b.parentNode)
    if ((b = b.parentNode) == a)
      return true;
  return false;
}

//-->