/* Java Script */
/* Copyright © 1997-2008 Bizymoms. All rights reserved. */
var MenuScrollerHeight1;
var MenuScrollerHeight2;
function at_show_aux_footer(parent, child)
{
  var p = document.getElementById(parent);
  var c = document.getElementById(child );
var top=0;
 // var top  = (c["at_position"] == "y") ? p.offsetHeight+0 : 0;
  var left = (c["at_position"] == "x") ? p.offsetWidth +2 : 0;

  for (; p; p = p.offsetParent)
  {
    top  += p.offsetTop;
    left += p.offsetLeft;
  }
  if(parent=="sample_attach_menu_parent_footer1")
  {
		//var sc= MenuScrollerHeight1;
		 c.style.top  = top - MenuScrollerHeight1 +'px';
  }
  if(parent=="sample_attach_menu_parent_footer2")
  {
		 c.style.top  = top - MenuScrollerHeight2 +'px';
  }
  
  c.style.position   = "absolute";

  c.style.left       = left+'px';
  c.style.visibility = "visible";
}

function at_show_footer()
{
  var p = document.getElementById(this["at_parent"]);
  var c = document.getElementById(this["at_child" ]);

  at_show_aux_footer(p.id, c.id);
  clearTimeout(c["at_timeout"]);
}

function at_hide_footer()
{
  var p = document.getElementById(this["at_parent"]);
  var c = document.getElementById(this["at_child" ]);

  c["at_timeout"] = setTimeout("document.getElementById('"+c.id+"').style.visibility = 'hidden'", 333);
}

function at_click_footer()
{
  var p = document.getElementById(this["at_parent"]);
  var c = document.getElementById(this["at_child" ]);

  if (c.style.visibility != "visible") at_show_aux_footer(p.id, c.id); else c.style.visibility = "hidden";
  return false;
}

function at_attach_footer(parent, child, showtype, position, cursor, scrollerHeight1,scrollerHeight2)
{
  var p = document.getElementById(parent);
  var c = document.getElementById(child);
  
  /*for (; p; p = p.offsetParent)
  {
    top  += p.offsetTop;
    left += p.offsetLeft;
  }*/
  
  if(parent=="sample_attach_menu_parent_footer1")
  {
		 MenuScrollerHeight1=scrollerHeight1;
  }
  if(parent=="sample_attach_menu_parent_footer2")
  {
		 MenuScrollerHeight2 =  scrollerHeight2;
  }

 if(parent=="sample_attach_menu_parent_footer1")
  {
		 c.style.top  = 200 - MenuScrollerHeight1 +'px';
  }
  if(parent=="sample_attach_menu_parent_footer2")
  {
		 c.style.top  = 200 - MenuScrollerHeight2 +'px';
  }

  p["at_parent"]     = p.id;
  c["at_parent"]     = p.id;
  p["at_child"]      = c.id;
  c["at_child"]      = c.id;
  p["at_position"]   = position;
  c["at_position"]   = position;
  

  c.style.position   = "absolute";
  c.style.visibility = "hidden";

  if (cursor != undefined) p.style.cursor = cursor;

  switch (showtype)
  {
    case "click":
      p.onclick     = at_click_footer;
      p.onmouseout  = at_hide_footer;
      c.onmouseover = at_show_footer;
      c.onmouseout  = at_hide_footer;
      break;
    case "hover":
      p.onmouseover = at_show_footer;
      p.onmouseout  = at_hide_footer;
      c.onmouseover = at_show_footer;
      c.onmouseout  = at_hide_footer;
      break;
  }
}