// Show Primary Navigation Second Layer
function showPrimaryNavigationSecondLayer(refElement) {
  refElement.parentNode.getElementsByTagName('ul').item(0).style.display='block';
}

// Hide Primary Navigation Second Layer
function hidePrimaryNavigationSecondLayer(refElement) {
  refElement.parentNode.getElementsByTagName('ul').item(0).style.display='none';
}

