<!-- Rollover Script -->
       if (document.images) {            // Active Images
        img1on = new Image();
        img1on.src = "http://www.watermarkfilms.net/images/nav_home_glow.jpg";
        img2on = new Image();
        img2on.src = "http://www.watermarkfilms.net/images/nav_about_glow.jpg"
        img3on = new Image();
        img3on.src = "http://www.watermarkfilms.net/images/nav_film_glow.jpg";
        img4on = new Image();
        img4on.src = "http://www.watermarkfilms.net/images/nav_contact_glow.jpg";
        img5on = new Image();
        img5on.src = "http://www.watermarkfilms.net/images/nav_links_glow.jpg";

        img1off = new Image();			
        img1off.src = "http://www.watermarkfilms.net/images/nav_home.jpg";
        img2off = new Image();			
        img2off.src = "http://www.watermarkfilms.net/images/nav_about.jpg";
        img3off = new Image();			
        img3off.src = "http://www.watermarkfilms.net/images/nav_film.jpg";
        img4off = new Image();			
        img4off.src = "http://www.watermarkfilms.net/images/nav_contact.jpg";
        img5off = new Image();			
        img5off.src = "http://www.watermarkfilms.net/images/nav_links.jpg";

			
        }                          // Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

                                   // Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}
<!-- End Rollover Script -->