<!--
/* #(@) $Id: rollovers.js,v 1.4 2001/04/01 22:45:54 mike808 Exp $ */
/* Copyright 2001 by Michael King,                                         */
/* Fenton, Missouri, 63026, U.S.A.                                         */
/* All rights reserved. Licensed for use on www.stllinux.org.              */
/* All brands and product names are trademarks or registered trademarks of */
/* their respective companies.                                             */

if (document.images) {
  normal = new MakeImageArray(3)
  over = new MakeImageArray(3)
  blurb = new MakeStringArray(3)
  normal[1].src = "/imagessite/corenav_contact.gif"
  over[1].src = "/imagessite/corenav_contactX.gif"
  blurb[1] = "Contact the LUG"
  normal[2].src = "/imagessite/navbar_top_grey.gif"
  over[2].src = "/imagessite/navbar_top_greyX.gif"
  blurb[2] = "Go to the top of the page"
  normal[3].src = "/imagessite/navbar_contact_grey.gif"
  over[3].src = "/imagessite/navbar_contact_greyX.gif"
  blurb[3] = "Contact the LUG"
  
}
function MakeImageArray(n) {
  this.length = n
  for (var i = 1; i<=n; i++) { this[i] = new Image() }
  return this
}
function MakeStringArray(n) {
  this.length = n
  for (var i = 1; i<=n; i++) { this[i] = new String() }
  return this
}
function msover(name,num) {
  if (document.images) { 
    name.src = over[num].src
    window.status = blurb[num]
  }
  return true
}
function msout(name,num) {
  if (document.images) {
    name.src = normal[num].src
    window.status = ""
  }
  return true
}
function activate(name,num,name2) {
  if (document.images) {
    normal[num].src = over[num].src
    name.src = over[num].src
    if(name2){name2.src = over[num].src}
  }
}


/* END OF $RCSfile: rollovers.js,v $ */
// -->

