// JavaScript Document

// Rollover Code

	ver4 = (document.layers || document.all) ? 1 : 0;

        if (document.images) {
            arImageSrc = new Array (
	
	        "/anthweb/images/artist_info_over.gif",
                "/anthweb/images/support_anthro_over.gif",
                "/anthweb/images/sitemap_over.gif",
                "/anthweb/images/contact_over.gif",
				"/anthweb/images/back_to_top_over.gif",
                "/anthweb/images/go_btn_over.gif",
				"/anthweb/images/email_over.gif",
				"/anthweb/images/close_win_over.gif")

            arImageList = new Array ();
            for (counter in arImageSrc) {
                arImageList[counter] = new Image();
                arImageList[counter].src = arImageSrc[counter];
            }
        };

        function rollOver(imName,over) {
            if (!document.images) {return};
            whichIm = document.images[imName];
            if (over) { whichIm.src = "/anthweb/images/" + imName + "_over.gif" }
                 else { whichIm.src = "/anthweb/images/" + imName + "_out.gif" };
        }

