window.onerror=null;

        if (document.images) {            
            img1off = new Image();  img1off.src = "theme/home.gif"; 
            img2off = new Image();  img2off.src = "theme/about.gif";
            img3off = new Image();  img3off.src = "theme/advisoryboard.gif";
			img4off = new Image();  img4off.src = "theme/rotations.gif";
            img5off = new Image();  img5off.src = "theme/communityprograms.gif";
			img6off = new Image();  img6off.src = "theme/careerprograms.gif";
			img7off = new Image();  img7off.src = "theme/contactus.gif";
			img8off = new Image();  img8off.src = "theme/schoolhealth.gif";
			img9off = new Image();  img9off.src = "theme/events.gif";
			img10off = new Image();  img10off.src = "theme/newsletters.gif";
			img11off = new Image();  img11off.src = "theme/staff.gif";
			img12off = new Image();  img12off.src = "theme/links.gif";

            img1on = new Image();  img1on.src = "theme/homeon.gif";
            img2on = new Image();  img2on.src = "theme/abouton.gif";
            img3on = new Image();  img3on.src = "theme/advisoryboardon.gif";
            img4on = new Image();  img4on.src = "theme/rotationson.gif";
			img5on = new Image();  img5on.src = "theme/communityprogramson.gif";
			img6on = new Image();  img6on.src = "theme/careerprogramson.gif";
			img7on = new Image();  img7on.src = "theme/contactuson.gif";
			img8on = new Image();  img8on.src = "theme/schoolhealthon.gif";
			img9on = new Image();  img9on.src = "theme/eventson.gif";
			img10on = new Image();  img10on.src = "theme/newsletterson.gif";
			img11on = new Image();  img11on.src = "theme/staffon.gif";
			img12on = new Image();  img12on.src = "theme/linkson.gif";

        }

    function imgOn(imgName) {
            if (document.images) {
                document[imgName].src = eval(imgName + "on.src");
            }
    }

    function imgOff(imgName) {
            if (document.images) {
                document[imgName].src = eval(imgName + "off.src");
            }
    }