<!--
// NOTE:  New Browser detection code, more effecient and allows Netscape 4.0
//        And the new IE 4.0 which now supports image arrays.
//
//
//
        browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
        if ( browser) {
                normal = new MakeArray(18)
                over = new MakeArray(18)
                blurb = new MakeArray(18)

  <!----signifies what image to set rollover back to----->

                normal[1].src = "images/about.gif"
					normal[2].src = "images/newsletter.gif"
					normal[3].src = "images/safety.gif"
					normal[4].src = "images/energy.gif"
					normal[5].src = "images/comments.gif"
					normal[6].src = ""
					normal[7].src = ""
					normal[8].src = ""
					normal[9].src = ""
					normal[10].src = ""

    <!----signifies image that comes up when rollovered----->

        over[1].src = "images/about_o.gif"
			over[2].src = "images/newsletter_o.gif"
			over[3].src = "images/safety_o.gif"
			over[4].src = "images/energy_o.gif"
			over[5].src = "images/comments_o.gif"
			over[6].src = ""
			over[7].src = ""
			over[8].src = ""
			over[9].src = ""
			over[10].src = ""          



                        blurb[1] = "About Us"
							blurb[2] = "Newsletter"
							blurb[3] = "Safety"
							blurb[4] = "Energy"
							blurb[5] = "Comments"
							blurb[6] = ""
							blurb[7] = ""
							blurb[8] = ""
							blurb[9] = ""
							blurb[10] = ""
							blurb[18] = ""              



                }
      function MakeArray(n) {
              this.length = n
              for (var i = 1; i<=n; i++) {
                      this[i] = new Image()
                      }
              return this
      }
        function msover(num) {
                        if ( browser) {
                                loadImage = "Image" + num;
                                document.images[loadImage].src = over[num].src
                                window.status = blurb[num]
                                                             }
                }
        function msout(num) {
                        if ( browser) {
                              loadImage = "Image" + num;
                                document.images[loadImage].src = normal[num].src
                                window.status = blurb[18]
                        }
                }
// -->
