<!--
var myLeftMenu = new Array();
myLeftMenu [0]="gone";
myLeftMenu [1]="dropA";
myLeftMenu [2]="dropH";
myLeftMenu [3]="dropM";
myLeftMenu [4]="dropP";
myLeftMenu [5]="dropCC";
myLeftMenu [6]="dropPR";
myLeftMenu [7]="dropC";

//sImgPath = 'images/';
//sImgUp = 'arrow_right.gif';
//sImgDn = 'arrow_down.gif';

function showLeftMenu(layerID, oImg){
  for(var i=0;i<myLeftMenu.length;i++){
    if(myLeftMenu[i]==layerID && document.getElementById(myLeftMenu[i]).style.display == 'none'){
    //document.getElementById(myPics[i]).src = sImgPath + sImgDn;
    document.getElementById(myLeftMenu[i]).style.display = "block";
    }else{
     //document.getElementById(myPics[i]).src = sImgPath + sImgUp;
    document.getElementById(myLeftMenu[i]).style.display = "none";
  }
 }
}
// -->
