<!-- Begin    Javascript for Menus


IE4 = (document.all) ? 1 : 0;
  NS4 = (document.layers) ? 1 : 0;
  ver4 = (IE4 || NS4) ? 1 : 0;

  if (ver4) {  	secondImTop = "<img border='0' src='images/lsl_title_hi.jpg' width='770' height='200' usemap='#topnavmap'>";
   					arPopups = new Array()    }
    else { secondImTop = ""; }


	function setBeginEnd(which,x1,y1,x2,y2) {
   		 arPopups[which] = new Array();
    	 arPopups[which][0] = x1;
    	 arPopups[which][1] = y1;
    	 arPopups[which][2] = x2;
    	 arPopups[which][3] = y2	}

	
	if (ver4) {	setBeginEnd(1,25,170,110,200);
					setBeginEnd(2,111,170,295,200);
					setBeginEnd(3,296,170,460,200);
					setBeginEnd(4,461,170,560,200);
					setBeginEnd(5,561,170,740,200)	}
					
					
	function mapOver(which,on) {
        
        if (which<6){whichmenu="elMenu"}
                	
        if (!ver4) { return }
        if (IE4) { whichEl = eval("document.all."+whichmenu+"Over.style")        }
            else { whichEl = eval("document.elMenu.document."+whichmenu+"Over")  };

        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;		}
 		else {
            whichEl.clip = "rect(" + clTop + " " + clRight + " " + clBot + " " + clLeft + ")";	 }

        whichEl.visibility = "visible";
       }

//    End    -->