arPopups = new Array()

function setBeginEnd(which,from,to){
    arPopups[which] = new Array();
    arPopups[which][0] = from;
    arPopups[which][1] = to;
}

setBeginEnd(1,75,95);
setBeginEnd(2,96,120);
setBeginEnd(3,121,141);
setBeginEnd(4,142,165);
setBeginEnd(5,166,187);
setBeginEnd(6,188,211);
setBeginEnd(7,212,233);
setBeginEnd(8,234,256);
setBeginEnd(9,257,277);
setBeginEnd(10,278,302);
setBeginEnd(11,303,323);

clLeft = 575;
clRight = 715;

function mapOver(which,on) {
    if (!ver4) { return }
    if (IE4) { whichEl = document.all.foehlMenuOver.style }
        else { whichEl = document.foehlMenu.document.foehlMenuOver };
    if (!on) { whichEl.visibility = "hidden"; return }

    clTop = arPopups[which][0];
    clBot = arPopups[which][1];

	if (NS4) {
        whichEl.clip.left = clTop;
        whichEl.clip.right = clBot;
	}
	else {
        whichEl.clip = "rect(" + clTop + " " + clRight + " " + clBot + " " + clLeft + ")";
	}
    whichEl.visibility = "visible"
}
