function loadContact() {
	
	var contact = document.getElementById('contact');
	if(contact) {
		for(i=0;i<contact.childNodes.length;i++) {
			node = contact.childNodes[i];
			if(node.nodeName == "SPAN") {
				node.id = "spn" + i;
				node.className += " hide";
				for(j=0;j<node.childNodes.length;j++) {
					subnode = node.childNodes[j];
					if(subnode.nodeName == "A") {
						subnode.id = "a" + i;
						subnode.onclick = function() {
							id = this.id;
							number = id.substr(1);
							span = document.getElementById("spn" + number);
							if(span) {
								if(span.className && span.className.indexOf("hide") >= 0) {
									span.className = span.className.replace("hide","");
								} else {
									span.className += "hide";
								}
							}
						}
					}
					
				}
			}
		}
	}
	else {
		alert("Contact not found");
	}
}
