// This code is copyright of The Scripps Research Institute
// Author: Jesus M. Castagnetto, jesusmc@scripps.edu
// (c) 1997, 1998
// You are free to use this code and modify it, as long as you
// also include this copyright notice.

// Messages to show on the status line
  msgStatus = new Array();
  msgStatus['metallo'] = "Go to the main page of the MetalloProtein Program";
  msgStatus['mdb'] = "Search/View the MetalloProtein Database";
  msgStatus['tsri'] = "Go to TSRI main page";
  msgStatus['members'] = "Metallo Members Only";
  msgStatus['pdb'] = "Recent Protein Data Bank Entries";
  msgStatus['pubs'] = "Publications Pertaining to Metalloprotein Research";
  msgStatus['web'] = "Links That May Be Useful for Research";
  msgStatus['info'] = "Program Participant Information";
  msgStatus['jobs'] = "Research and Employment Opportunities";
  msgStatus['about98'] = "Most Recent Metalloprotein Program Information";
  msgStatus['feedback'] = "Send Feedback Regarding This Website";


// The functions below manage the rollovers

  function mouseIn(imgName,imgSrc) {
    if (document.images) {
      document[imgName].src=imgbar[imgSrc].src;
    }
  }

  function mouseOut(imgName,imgSrc) {
    if (document.images) {
      document[imgName].src=imgbar[imgSrc].src;
    }
  }

