
//  Copyright 1996-97 Project Cool, Inc.  Used by the net, with permission but
//  we would appreciate it if you would give us credit in the source or a link
//  from your site. Please keep this notice intact. http://www.projectcool.com
//
browser = (((navigator.appName == "Netscape") &&  (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName ==  "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))
if (browser) {
	picture = new MakeImageArray(4)
	blurb = new MakeStringArray(4)
	blurb[1] = "male"
	blurb[2] = "female"
	blurb[3] = "10 km map"
	blurb[4] = "10 km map"
	}
      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(num) {
                        if (browser) { 
                                document.photo.src = picture[num].src
                                window.status = blurb[num]
                        }
                }
        function msout(num) {
                        if (browser) {
                                        document.photo.src = picture[num].src
                                        window.status = blurb[num]
                        }                   
                }