          NS4 = (document.layers) ? 1 : 0;
          DOM1 = (document.getElementById) ? 1 : 0;
			if (navigator.appVersion.indexOf ('Macintosh') != -1) 
        		{ IE4 = (document.getElementById) ? 1 : 0;}
          	else { IE4 = (document.all) ? 1 : 0;} 

			ver4 = (IE4 || NS4) ? 1 : 0;
			ver5 = (DOM1) ? 1 : 0;
			kosher = (ver4 || ver5) ? 1 : 0;
			
			if (navigator.userAgent.toLowerCase().indexOf("opera") != -1) {kosher=0;}
			if (navigator.userAgent.toLowerCase().indexOf("konqueror") != -1) {kosher=0;}
			
          if (kosher) {
              secondIm = "<IMG SRC='http://www.nateborofsky.com/art/mainlittle/mlittlefunroll.gif' USEMAP='#funmap' WIDTH=284 HEIGHT=144 BORDER='0'>";
              arPopups = new Array()
          			}
          else { secondIm = "" }

          function setBeginEnd(which,left,top,right,bottom) {
              arPopups[which] = new Array();
              arPopups[which][0] = left;
              arPopups[which][1] = top;
              arPopups[which][2] = right;
              arPopups[which][3] = bottom;
          }

          if (kosher) {
              setBeginEnd(1,0,5,48,24);
              setBeginEnd(2,18,35,47,55);
              setBeginEnd(3,17,70,48,91);
              setBeginEnd(4,5,107,48,128);
              setBeginEnd(5,121,8,147,27);
              setBeginEnd(6,122,35,182,56);
              setBeginEnd(7,122,80,164,101);
              setBeginEnd(8,119,111,176,130);
			  setBeginEnd(9,195,0,265,23);
              setBeginEnd(10,195,22,265,44);
              setBeginEnd(11,195,43,250,67);
              setBeginEnd(12,197,66,263,92);
              setBeginEnd(13,194,91,256,118);
              setBeginEnd(14,193,117,285,141);
              setBeginEnd(15,67,6,100,57);
          }

          function mapOver(which,on) {
          
			if (!kosher) { return };
			if (NS4) { whichEl = document.elMenu.document.elMenuOver }
			else {
				if (DOM1) { whichEl = document.getElementById('elMenuOver').style }
				else { whichEl = document.all.elMenuOver.style }
				 }

			if (!on) { whichEl.visibility = "hidden"; return }

              clLeft = arPopups[which][0];
              clTop = arPopups[which][1];
              clRight = arPopups[which][2];
              clBot = arPopups[which][3];

			if (NS4) {
				whichEl.clip.left = clLeft;
				whichEl.clip.right = clRight;
				whichEl.clip.top = clTop;
				whichEl.clip.bottom = clBot;
					}
			else { whichEl.clip = "rect(" + clTop + "," + clRight + "," + clBot + "," + clLeft + ")" }
            
              whichEl.visibility = "visible" 
          	}

