function loadEm() {
    if (document.images){
        //alert("loadEm: create image array");
        namex = new Image();
        nameon = new Image();
        news = new Image();
        newson = new Image();
        sched = new Image();
        schedon = new Image();
        disc = new Image();
        discon = new Image();
        contact = new Image();
        contacton = new Image();
        mediax = new Image();
        mediaon = new Image();
        linksx = new Image();
        linkson = new Image();
        //alert("loadEm: image array created");
        
        //alert("loadEm: load images");
        namex.src = '/images/nav/name.gif';
        nameon.src = '/images/nav/name_on.gif';
        news.src = '/images/nav/news.gif';
        newson.src = '/images/nav/news_on.gif';
        sched.src = '/images/nav/sched.gif';
        schedon.src = '/images/nav/sched_on.gif';
        disc.src = '/images/nav/disc.gif';
        discon.src = '/images/nav/disc_on.gif';
        contact.src = '/images/nav/contact.gif';
        contacton.src = '/images/nav/contact_on.gif';
        mediax.src = '/images/nav/media.gif';
        mediaon.src = '/images/nav/media_on.gif';
        linksx.src = '/images/nav/links.gif';
        linkson.src = '/images/nav/links_on.gif';
        //alert("loadEm: images loaded");
    }
}

function imgOver(imgID,imgOn) {
    imgID.src = imgOn.src;
}
function imgOut(imgID,imgOff) {
    imgID.src = imgOff.src;
}

function onName() {
    nom.src = nameon.src;
}
function offName() {
    nom.src = namex.src;
}
