// JavaScript Document


function siteButtonFlashOn() {
	contactElement = document.getElementById('contactInformation');
	contactElement.style.zIndex=10;
}
function siteButtonFlashOff() {
	contactElement = document.getElementById('contactInformation');
	contactElement.style.zIndex=1;
}
