// rollover code
    clicked = 0;
    IE4 = (document.all) ? 1 : 0;
    NS4 = (document.layers) ? 1 : 0;
    ver4 = (IE4 || NS4) ? 1 : 0;

var tp = 0;
var bm = 27;

function setBeginEnd(which,lt,rt) {
    arPopups[which] = new Array();
    arPopups[which][0] = tp;
    arPopups[which][1] = lt;
    arPopups[which][2] = rt;
    arPopups[which][3] = bm;
}

    arPopups = new Array();

	setBeginEnd(1,0,165);
	setBeginEnd(2,182,232);
	setBeginEnd(3,247,304);
	setBeginEnd(4,320,436);
	setBeginEnd(5,450,550);
	setBeginEnd(6,559,627);
	setBeginEnd(7,641,718);
	setBeginEnd(8,732,787);
	setBeginEnd(9,800,865);
	setBeginEnd(10,894,1048);

function setClick(which) {
	parent.section = which;

	if(!which) {which=0;}
    if (!ver4) { return; }
    if (IE4) {whichEl = document.all.elMenuClicked.style;}
    else {whichEl = document.elMenuClicked;}

    clTop = arPopups[which][0];
    clLeft = arPopups[which][1];
    clRight = arPopups[which][2];
    clBot = arPopups[which][3];

    if (NS4) {
        whichEl.clip.top = clTop;
        whichEl.clip.bottom = clBot;
        whichEl.clip.left = clLeft;
        whichEl.clip.right = clRight;
    }
    else {
        whichEl.clip = "rect(" + clTop + " " + clRight + " " + clBot + " " + clLeft + ")";
    }
    whichEl.visibility = "visible";
    clicked = which;
}

function mapOver(which, on) {
    if(which == clicked) {return;}
    if (!ver4) { return; }
    if (IE4) {whichEl = document.all.elMenuOver.style;}
    else {whichEl = document.elMenuOver;}
    if (!on) {whichEl.visibility = "hidden"; return;}

    clTop = arPopups[which][0];
    clLeft = arPopups[which][1];
    clRight = arPopups[which][2];
    clBot = arPopups[which][3];

    if (NS4) {
        whichEl.clip.top = clTop;
        whichEl.clip.bottom = clBot;
        whichEl.clip.left = clLeft;
        whichEl.clip.right = clRight;
    }
    else {
        whichEl.clip = "rect(" + clTop + " " + clRight + " " + clBot + " " + clLeft + ")";
    }
    whichEl.visibility = "visible";

}

