        <!--
                if (document.images) {
        // Active Images                                       
            img22on = new Image();
            img22on.src = "img/team_robertBurke2.jpg";
            img23on = new Image();
            img23on.src = "img/team_janetShanberge4.jpg";

            img22off = new Image();                    
            img22off.src = "img/team_robertBurke.jpg";
            img23off = new Image();
            img23off.src = "img/team_janetShanberge.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");
                }
        }
		// -->