// JavaScript Document
function navigateTo(Page){
	if(Page==1){
	 window.location="index.html";
	}else if(Page==2){
	 window.location="services.html";
	}else if(Page==3){
	 window.location="overview.html";
	}else if(Page==4){
	 window.location="staff.html";
	}else if(Page==5){
	 window.location="contact.html";
	}
}
function sendEmail(){
	var mail=document.getElementById('form1');
	mail.submit();
}
