homeOff = new Image();
aboutOff = new Image();
servicesOff = new Image();
hintsOff = new Image();
listingsOff = new Image();
applicationOff = new Image();
contactOff = new Image();

homeOn = new Image();
aboutOn = new Image();
servicesOn = new Image();
hintsOn = new Image();
listingsOn = new Image();
applicationOn = new Image();
contactOn = new Image();

homeOff.src = "/images/buttons/home_off.gif";
aboutOff.src = "/images/buttons/about_off.gif";
servicesOff.src = "/images/buttons/services_off.gif";
hintsOff.src = "/images/buttons/hints_off.gif";
listingsOff.src = "/images/buttons/listings_off.gif";
applicationOff.src = "/images/buttons/application_off.gif";
contactOff.src = "/images/buttons/contact_off.gif";

homeOn.src = "/images/buttons/home_on.gif";
aboutOn.src = "/images/buttons/about_on.gif";
servicesOn.src = "/images/buttons/services_on.gif";
hintsOn.src = "/images/buttons/hints_on.gif";
listingsOn.src = "/images/buttons/listings_on.gif";
applicationOn.src = "/images/buttons/application_on.gif";
contactOn.src = "/images/buttons/contact_on.gif";

function mm_over(imgName)
{
	imgOn = eval(imgName + "On.src");
	document[imgName].src = imgOn;
}

function mm_out(imgName, dir)
{
	imgOff = eval(imgName + "Off.src");
	document[imgName].src = imgOff;
}



function chkForm(f) {
	if (f.FirstName.value == "") {
		alert ("Please enter - FIRST NAME");
		f.FirstName.focus();
		return false;
	}

	if (f.LastName.value == "") {
		alert ("Please enter - LAST NAME");
		f.LastName.focus();
		return false;
	}

	if (f.EMail.value == "") {
		alert ("Please enter - EMAIL");
		f.EMail.focus();
		return false;
	}

}
