	
	// image pre-loader for the menu (menu.asp)
	menuImage1a = new Image();
	menuImage1a.src = "images/b_contact.jpg";
	menuImage1b = new Image();
	menuImage1b.src = "images/b_contact_over.jpg";
	menuImage2a = new Image();
	menuImage2a.src = "images/b_home.jpg";
	menuImage2b = new Image();
	menuImage2b.src = "images/b_home_over.jpg";
	menuImage3a = new Image();
	menuImage3a.src = "images/b_info.jpg";
	menuImage3b = new Image();
	menuImage3b.src = "images/b_info_over.jpg";
	menuImage4a = new Image();
	menuImage4a.src = "images/b_portfolio.jpg";
	menuImage4b = new Image();
	menuImage4b.src = "images/b_portfolio_over.jpg";
	menuImage5a = new Image();
	menuImage5a.src = "images/b_services.jpg";
	menuImage5b = new Image();
	menuImage5b.src = "images/b_services_over.jpg";
	// end of image pre-loader
	
	// -------------------------------
	// Javascript functions below here

	function changeTo(highlightcolor){
		source=event.srcElement
		if (source.tagName=="TR"||source.tagName=="TABLE")
			return
		while(source.tagName!="TD")
			source=source.parentElement
		if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore")
			source.style.backgroundColor=highlightcolor;
	}

	function changeBack(originalcolor){
		if (event.fromElement.contains(event.toElement)||source.contains(event.toElement)||source.id=="ignore")
			return
		if (event.toElement!=source)
			source.style.backgroundColor=originalcolor;
	}
	
	function checkForm() {
		if (document.form.name.value == "") {
			alert("Please enter you name");
			return false;
		}
		if (document.form.phonenumber.value == "") {
			alert("Please enter a phone number");
			return false;
		}
		if (document.form.emailaddress.value == "") {
			alert("Please enter an email address");
			return false;
		}
		if (document.form.comments.value == "") {
			alert("Please enter a question or comment");
			return false;
		}
	}