function toggleSSBox(disp) {
	var cBox = document.getElementById('siteSelectionBox');
	cBox.style.display = disp;
}
var timeout = null;
function hideList(e) {
	var e = e.target||event.srcElement;
	timeout = setTimeout(function() {
				toggleSSBox('none');
			}, 650);
}
function clearTim() {
	clearTimeout(timeout);
}
function selectItem(e) {
	hideList(e);
}
//---contact-----------------
function emailMask() {
if (document.getElementById) {
var alltags = document.all? document.all : document.getElementsByTagName("*");
for (i=0; i < alltags.length; i++) {
if (alltags[i].className == "emailMask") {
var oldText = alltags[i].firstChild;
var emailAddress = alltags[i].firstChild.nodeValue;
var usr = emailAddress.substring(0, emailAddress.indexOf("("));
var wb = emailAddress.substring(emailAddress.indexOf(")")+1, emailAddress.length);
var newText = usr+"@"+wb;
var a = document.createElement("a");
a.href = "mailto:"+newText;
var address = document.createTextNode(newText);
a.appendChild(address);
alltags[i].replaceChild(a,oldText);
}
}
}
}
//---------------------------