// Register onMouseOver/Out events

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(wireEvents);

function wireEvents()
{
	theNav = document.getElementById("handbags");
	theMenu = document.getElementById("handbagMenu");
	theNav.onmouseover = showMenu;
	theNav.onmouseout = hideMenu;
	theMenu.onmouseout = hideMenu;
}

function showMenu(e)
{	
	
	//alert(theNav.offsetTop);
	theMenu.style.top = theNav.offsetTop + theNav.height - 10;
	theMenu.style.left = theNav.offsetLeft - 5;
	theMenu.style.display = "block";  
}
function hideMenu(e)
{
	if (!e) var e = window.event;
	var relTarg = e.relatedTarget || e.toElement;
	if(relTarg.id != "handbagMenu" && relTarg.id != "handbags" && relTarg.id != "new_handbags" && relTarg.id != "all_handbags")
	{  theMenu.style.display = "none";  }
}

function manageHighlight(item, highlight)
{
	if(highlight)
	{  document.getElementById(item).src = getImageURL() + "store/boutique/coach/dhtmlNav/" + item + "_on.gif";  }
	else
	{  document.getElementById(item).src = getImageURL() + "store/boutique/coach/dhtmlNav/" + item + ".gif";  }
}