var PrevTabContentId = new Array();
PrevTabContentId[0] = 'eshop_cart';
PrevTabContentId[1] = 'elogin_account';
function NavMenuHandling(GoToLocation,NavMenu){
	location.href=GoToLocation;
	AlterElement('subnav_'+NavMenu,'visibility',true);
  return;
}
function NavMenuOMH(NavMenuElem,Level){
  NavMenuElem.style.color="#FF6000";
}
function NavMenuOMO(NavMenuElem,Level){
  if (Level==0){NavMenuElem.style.color="#000000";}
  else{NavMenuElem.style.color="000000";}
}

function TabContent_Show(TabFamily,TabContentId){
  AlterElement(TabContentId,'visibility',true);
	if (PrevTabContentId[TabFamily]!=TabContentId){
		AlterElement(PrevTabContentId[TabFamily],'visibility',false);
	}
	PrevTabContentId[TabFamily]=TabContentId;
	return;
}
function TabHighlight(Light){
	if (Light==true){}
	else{}
	return;
}
