//this script is for the navigation

browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion)
>= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") &&
(parseInt(navigator.appVersion) >= 4 )))
        if ( browser) {
                normal = new MakeArray(14)
                roll = new MakeArray(14)
          
          
                normal[1].src = "images/corporation_off.gif"
                normal[2].src = "images/metal_sawing_off.gif" 
                normal[3].src = "images/deburring_off.gif" 
                normal[4].src = "images/saw_sales_off.gif" 
                normal[5].src = "images/saw_service_off.gif"
                normal[6].src = "images/contract_off.gif"
                normal[7].src = "images/service_off.gif"
                normal[8].src = "images/engineering_off.gif"
                normal[9].src = "images/contact_us_off.gif"
                normal[10].src = "images/kasto_off.gif"
                normal[11].src = "images/band_off.gif"
                normal[12].src = "images/versa_off.gif"
                normal[13].src = "images/kastogrip_off.gif"
                normal[14].src = "images/kastospeed_off.gif"

                roll[1].src = "images/corporation_on.gif"
                roll[2].src = "images/metal_sawing_on.gif" 
                roll[3].src = "images/deburring_on.gif" 
                roll[4].src = "images/saw_sales_on.gif" 
                roll[5].src = "images/saw_service_on.gif"
                roll[6].src = "images/contract_on.gif"
                roll[7].src = "images/service_on.gif"
                roll[8].src = "images/engineering_on.gif"
                roll[9].src = "images/contact_us_on.gif"
                roll[10].src = "images/kasto_on.gif"
                roll[11].src = "images/band_on.gif"
                roll[12].src = "images/versa_on.gif"
                 roll[13].src = "images/kastogrip_on.gif"
                roll[14].src = "images/kastospeed_on.gif"
               
                    }

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 = roll[num].src
}

                }

function msout(num) {
if ( browser) {
loadImage = "Image" + num;
document.images[loadImage].src = normal[num].src
}
}

//-->
