var closeMenuTimer;
var openMenuTimer;
var openMenuId;
var openMenuLink;
var current;

$(function(){
	$('#globalNavList div').hide().css('opacity',0).appendTo('#globalNav');
	$('#globalNavList > li > a').hover( function () {
			openMenuId = this.id;
			openMenuLink = this;
			openMenuTimer = setTimeout(openMenu,100);
		}, function () { clearTimeout(openMenuTimer);});
	
	$('#globalNav').hover( function () {
		clearTimeout(closeMenuTimer);
	}, function () {
		closeMenuTimer = setTimeout(hideAllMenus,800);
	});
	
	$('.mailto-customerservice').attr('href', 'mailto:customerservice@luxespa.com');
	
	$('#globalNavList > li').removeClass('off');
});
function openMenu () {
	current = $('#globalNav > .'+openMenuId);
	current.css('z-index',100).css('display','block').fadeTo('fast',1,null);
	$('#globalNav > div').not(current).css('z-index',4).fadeTo('normal',0,null);
	$('#globalNavList > li').removeClass('on');
	$(openMenuLink).parent().addClass('on');
}
function hideAllMenus () {
	$('#globalNav > div').fadeTo(1000, 0, null);
	clearTimeout(closeMenuTimer);
	$('#globalNavList > li').removeClass('on');
}
