
window.onload = function(){
	
	setupMainMenuLinks();
	
}



function setupMainMenuLinks()	{

	
	
	/* check the browser is capable of recognising the DOM objects
	   we need to implement the script - otherwise return false and allow the normal link to be executed */
	   
	if(!document.getElementsByTagName) return false;
	if(!document.getElementById) return false;
	if(!document.getElementById("contactTime")) return false;

		if(document.getElementById("Contact_Me")) {
			
			
			document.getElementById("Contact_Me").onclick = function() {
				
				return showContactTime()
			
			}
		}
		
		
function showContactTime() {


	if(document.getElementById("contactTime").style.display == "none")	{

		document.getElementById("contactTime").style.display = "block"
		document.getElementById("preferredTime").style.display = "block"					
					

	}	
	
	else	{
		document.getElementById("contactTime").style.display = "none"
		document.getElementById("preferredTime").style.display = "none"					
	
	}
			
  }			

	
	
}		

