/* louiswilliams.com scripts */

var flag = false; 

function imageLoad() {  /* called with onLoad() */
    if (document.images) {
        mobilehome = new Image(); mobilehome.src = "/images/mobilehome.gif";
        plumbing = new Image(); plumbing.src = "/images/plumbing.gif";
        makita = new Image(); makita.src = "/images/makita.gif";
        woodworking = new Image(); woodworking.src = "/images/woodworking.gif";
        fasteners = new Image(); fasteners.src = "/images/fasteners.gif";
return (flag = true);  // set the flag and let the function know know it can work

    }
}

if (document.images) {   /* load the off images in the normal way */
    white = new Image(); white.src = "/images/white.gif";
}


function rollOver(imgName) {
    if (document.images && flag) {
        document.getElementById("frontpic").src = eval(imgName + ".src");
    }
}

function rollOut(imgName) {  /* the normal onMouseOut function */
    if (document.images && flag){
        document.getElementById("frontpic").src = eval(imgName + ".src");
    }
}


function showInset(wha) {
document.getElementById(wha).style.display='';
document.getElementById('links').style.display='none';

}

function closeInset(wha) {
document.getElementById('links').style.display='';
document.getElementById(wha).style.display='none';

}
