var ltidx = 0;
var msgs = new Array(2);
var links = new Array(2);
msgs[0] = "Estimated number of days before out-of-stock quantity will ship based on previous sales, NOT guaranteed";
msgs[1] = msgs[0] + ". Lead times may vary due to factors such as manufacturer stock and demand for component raw material. " +
          "If lead time is critical to your purchase, please call or request a quote. " + 
          "If you elect to place your order based on this estimate and the actual lead time falls outside the estimated time window, " + 
          "you will be contacted by a Galco representative.";
msgs[0] = msgs[0] + ".";
links[0] = "[More Detail]";
links[1] = "[Hide Detail]";

function changeText() {
    var ltdiv;
    var hlink;
    ltdiv = document.getElementById('ltdiv');
    hlink = document.getElementById('hlink');

    ltidx = (ltidx == 1 ? 0 : 1);
    ltdiv.innerHTML = msgs[ltidx];
    hlink.innerHTML = links[ltidx];
    if (ltidx == 1) {
       ltdiv.style.backgroundColor = "#f0f0f0";
       hlink.style.backgroundColor = "#f0f0f0";
       /*ltdiv.style.border = "1px outset #DCDCDC";*/
    }
    else {
       ltdiv.style.backgroundColor = "#ffffff";
       hlink.style.backgroundColor = "#ffffff";
       /*ltdiv.style.border = "0px";*/
    }
}