<!--
if (document.images) {
	ximg1on = new Image();           // Active images
	ximg1on.src = "images/page-button-what-how-white.gif";  
	ximg2on = new Image();
	ximg2on.src = "images/page-button-when-where-white.gif";
	ximg3on = new Image();           
	ximg3on.src = "images/page-button-what-happens-white.gif";  
	ximg4on = new Image();
	ximg4on.src = "images/page-button-who-why-white.gif";
	ximg5on = new Image();
	ximg5on.src = "images/page-button-related-links-white.gif";
	ximg6on = new Image();
	ximg6on.src = "images/page-button-tya-frame-white.gif";  
	ximg1off = new Image();          // Inactive images
	ximg1off.src = "images/page-button-what-how.gif"; 
	ximg2off = new Image();
	ximg2off.src = "images/page-button-when-where.gif";
	ximg3off = new Image();          
	ximg3off.src = "images/page-button-what-happens.gif";  
	ximg4off = new Image();
	ximg4off.src = "images/page-button-who-why.gif";
	ximg5off = new Image();
	ximg5off.src = "images/page-button-related-links.gif";
	ximg6off = new Image();
	ximg6off.src = "images/page-button-tya-frame.gif"; 
  }
    function ximgOn(imgName) {
            if (document.images) {
                document[imgName].src = eval(imgName + "on.src");
            }
    }
    function ximgOff(imgName) {
            if (document.images) {
                document[imgName].src = eval(imgName + "off.src");        
            }
    }
-->