      //Extra code to find position:
function findPos(element){
  if(bw.ns4){   //Netscape 4
    x = document.layers.layerMenu.pageX
    y = document.layers.layerMenu.pageY
  }else{ //other browsers
    x=0; y=0; var el,temp
    el = bw.ie4?document.all[element]:document.getElementById(element);
    if(el.offsetParent){
      temp = el
      while(temp.offsetParent){ //Looping parent elements to get the offset of them as well
        temp=temp.offsetParent; 
        x+=temp.offsetLeft
        y+=temp.offsetTop;
      }
    }
    x+=el.offsetLeft
    y+=el.offsetTop
  }
  //Returning the x and y as an array
  return [x,y]
}

pos = findPos("cmfill")
//alert(pos[0]);
//oCMenu.fromLeft = pos[0] 
oCMenu.fromLeft = 7 
oCMenu.fromTop = pos[1] 
//oCMenu.m["top_1"].b.moveIt(pos[0],10)
oCMenu.construct()

// do the same for the "By Product" menu
pos = findPos("cmfill2") 
oCMenu_byproduct.fromLeft = 7 
oCMenu_byproduct.fromTop = pos[1] 
oCMenu_byproduct.construct()

