var OFFSET = -1;
var ZINT = 100;

function ddMenu(id,d)
{
  var h = document.getElementById('ddheader-' + id);
  var c = document.getElementById('ddcontent-' + id);
  if(d == 1)
  {
    c.style.display = 'block';
    h.style.backgroundColor = "#1976B2";
    c.style.left = (h.offsetWidth + OFFSET) + 'px';
    var parentTop = h.offsetTop;
    var parentBottom = (parentTop + h.clientHeight);
    var subheight=c.clientHeight;
    if(parentTop>250)
      c.style.top = ((parentBottom+2)-subheight)+"px";
    else
      c.style.top = (parentTop)+"px";
 
    ZINT = ZINT + 1;
    c.style.zIndex = ZINT;
    /*
    for (i=0; i<c.childNodes.length; i++)
    {
      var thisnode = c.childNodes[i];
      for(j=0;j<thisnode.childNodes.length; j++)
      {
        if (thisnode.childNodes[j].nodeName=="LI")
        
        thisnode.childNodes[j].style.positon = "relative";
        thisnode.childNodes[j].style.left = 5+"px";
        //alert("LI");
      }
    }
   */
   }
   else
   {
     ddCollapse(c, h);
   }
}

function ddCollapse(c, h){
  c.style.display = 'none';
  h.style.backgroundColor = "#01426C";
}

function cancelHide(id){
  var h = document.getElementById('ddheader-' + id);
  var c = document.getElementById('ddcontent-' + id);
  c.style.display = 'block';
  h.style.backgroundColor = "#1976B2";
}


