function setPhone() {
	document.getElementById("contact_phone").style.display = "block";
	document.getElementById("contact_mobile").style.display = "none";
	document.getElementById("contact_fax").style.display = "none";
	document.getElementById("contact_email").style.display = "none";
	document.getElementById("contact_phone_icon").style.backgroundColor = "#FFFFFF";
	document.getElementById("contact_mobile_icon").style.backgroundColor = "";
	document.getElementById("contact_fax_icon").style.backgroundColor = "";
	document.getElementById("contact_email_icon").style.backgroundColor = "";
}
function setMobile() {
	document.getElementById("contact_phone").style.display = "none";
	document.getElementById("contact_mobile").style.display = "block";
	document.getElementById("contact_fax").style.display = "none";
	document.getElementById("contact_email").style.display = "none";
	document.getElementById("contact_phone_icon").style.backgroundColor = "";
	document.getElementById("contact_mobile_icon").style.backgroundColor = "#FFFFFF";
	document.getElementById("contact_fax_icon").style.backgroundColor = "";
	document.getElementById("contact_email_icon").style.backgroundColor = "";
}
function setFax() {
	document.getElementById("contact_phone").style.display = "none";
	document.getElementById("contact_mobile").style.display = "none";
	document.getElementById("contact_fax").style.display = "block";
	document.getElementById("contact_email").style.display = "none";
	document.getElementById("contact_phone_icon").style.backgroundColor = "";
	document.getElementById("contact_mobile_icon").style.backgroundColor = "";
	document.getElementById("contact_fax_icon").style.backgroundColor = "#FFFFFF";
	document.getElementById("contact_email_icon").style.backgroundColor = "";
}
function setEmail() {
	document.getElementById("contact_phone").style.display = "none";
	document.getElementById("contact_mobile").style.display = "none";
	document.getElementById("contact_fax").style.display = "none";
	document.getElementById("contact_email").style.display = "block";
	document.getElementById("contact_phone_icon").style.backgroundColor = "";
	document.getElementById("contact_mobile_icon").style.backgroundColor = "";
	document.getElementById("contact_fax_icon").style.backgroundColor = "";
	document.getElementById("contact_email_icon").style.backgroundColor = "#FFFFFF";
}

