browserGood = (((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion) >= 4 )))
        if (browserGood) {
                normal = new MakeArray(7);
                over = new MakeArray(7);
                blurb = new MakeArray(8);

                normal[1].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button1.gif'
                normal[2].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button2.gif'
                normal[3].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button3.gif'
                normal[4].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button4.gif'
                normal[5].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button5.gif'
                normal[6].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button6.gif'
                normal[7].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button7.gif'
  
         
                over[1].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button1_ovr.gif'
                over[2].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button2_ovr.gif'
                over[3].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button3_ovr.gif'
                over[4].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button4_ovr.gif'
                over[5].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button5_ovr.gif'
                over[6].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button6_ovr.gif'
                over[7].src = 'http://www.thetinfish.net/LC-MN/images/buttons/button7_ovr.gif'
                                        
                blurb[1] = 'Location'
                blurb[2] = 'Menu'
                blurb[3] = 'Photo Album'
                blurb[4] = 'Boat Rental'
                blurb[5] = 'Employment'
                blurb[6] = 'Lake Information'
                blurb[7] = 'From the Press'
                blurb[8] = 'The Tin Fish - Lake Calhoun Pavilion'
                
                                                
                }
                
                
      function MakeArray(n) {
              this.length = n
              for (var i = 1; i<=n; i++) {
                      this[i] = new Image()
                      }
              return this
      }
        function msover(num) {
                        if (browserGood) { 
                                loadImage = 'Image' + num;
                                document.images[loadImage].src = over[num].src
                                window.status = blurb[num]
                                
                                                        }
                }


        function msout(num) {
                        if (browserGood) {
                                        loadImage = 'Image' + num;
                                        document.images[loadImage].src = normal[num].src
                                        window.status = blurb[6]
                        }                   
                }
   
//end

