function findPos(){
  if(bw.ns4){   //Netscape 4
    x = document.layers["menu"].pageX
    y = document.layers["menu"].pageY
  }else{ //other browsers
    x=0; y=0; var el,temp
    el = bw.ie4?document.all["menu"]:document.getElementById("menu");
    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]
}
function placeElements(){
  //Changing the position of ALL top items:
  pos = findPos();
  pos[0] = pos[0] + 159;
  pos[1] = pos[1]  - 10;
//alert("("+pos[0]+","+pos[1]+")");
  oCMenuAccueil.m["top0"].b.moveIt(pos[0],pos[1]);
  oCMenuConventions.m["top0"].b.moveIt(pos[0]+153,pos[1]);
  oCMenu.m["top0"].b.moveIt(pos[0],pos[1]+26);
  oCMenuImprimes.m["top0"].b.moveIt(pos[0]+153,pos[1]+26);
  oCMenuLegislation.m["top0"].b.moveIt(pos[0]+307,pos[1]+26);
}
