var menutimer1 = 0;
var menutimer2 = 0;
var menutimer3 = 0;
var menutimer4 = 0;
var menutimer5 = 0;
function highlight(myitem) {
	myitem.style.backgroundColor = "#F3DF5B";
}
function unhighlight(myitem) {
	myitem.style.backgroundColor  = "";
	window.status = '';
}
function highlight2(myitem) {
	myitem.style.borderColor = "#000000";
}
function unhighlight2(myitem) {
	myitem.style.borderColor  = "";
}
function styleswap(b){
		eval("document.ub"+b+".style.filter='alpha(opacity=75)'");
		eval("document.ub"+b+".style.opacity='.75'");
	for (var i = 1; i < 6; i++)
  {
    if (i != b)
    {
		eval("document.ub"+i+".style.filter='alpha(opacity=20)'");
		eval("document.ub"+i+".style.opacity='.2'");
    }
  }
}
function styleswapback(b){
		document.ub1.style.filter='alpha(opacity=50)';
		document.ub1.style.opacity='.50';
		document.ub2.style.filter='alpha(opacity=50)';
		document.ub2.style.opacity='.50';
		document.ub3.style.filter='alpha(opacity=50)';
		document.ub3.style.opacity='.50';
		document.ub4.style.filter='alpha(opacity=50)';
		document.ub4.style.opacity='.50';
		document.ub5.style.filter='alpha(opacity=50)';
		document.ub5.style.opacity='.50';
}

function exited(subnum) {
  eval("menutimer" + subnum + " = setTimeout('hidesub(" + subnum + ")', 300 )");
}
function entered(subnum) {
  for (var i = 1; i < 6; i++)
  {
    if (i != subnum)
    {
		hidesub(i);
    }
  }
  eval("document.all.umenu"+subnum+"front.style.display=''");
  eval("document.all.umenu"+subnum+"back.style.display=''");
  clearTimeout(menutimer1);
  clearTimeout(menutimer2);
  clearTimeout(menutimer3);
  clearTimeout(menutimer4);
  clearTimeout(menutimer5);
  styleswap(subnum);
}
function hidesub(subnum) {
  eval("document.all.umenu"+subnum+"front.style.display='none'");
  eval("document.all.umenu"+subnum+"back.style.display='none'");
  styleswapback(subnum);
}
function gocat(catnum) {
	document.catform.cat.value=catnum;
	document.catform.submit();
}
function goitem(itemnum) {
	document.itemform.item.value=itemnum;
	document.itemform.cat.value=cnum;
	document.itemform.submit();
}
function addemail(){
	if (document.all.email.value == 'Enter email address...'){
		clearemail();
	}
	window.location = "https://www.homechicstore.com/zcart/index.php?main_page=create_account&email=" + document.all.email.value;
}
var emailcleared = 0;
function clearemail(){
	if (emailcleared == 1){
		return;
	}
	emailcleared = 1;
	document.all.email.value = '';
}
function update_countyzone(theForm){
	var SelectedZone = theForm.elements["stateZone"].options[theForm.elements["stateZone"].selectedIndex].text;
	if (SelectedZone == 'New York'){
		document.all.countyzonespan.style.display = '';
		document.all.stateZone.name = 'deferred';
		document.all.countyZone.name = 'zone_id';
	}else{
		document.all.countyzonespan.style.display = 'none';
		document.all.stateZone.name = 'zone_id';
		document.all.countyZone.name = 'deferred';
	}
}
