if (document.images) {

	therapyhome = new Image();
	therapyhome.src = "images/therapy/navigation/home.jpg";
	therapyhomeOver = new Image();
	therapyhomeOver.src = "images/therapy/navigation/home-over.jpg";

	therapyservices = new Image();
	therapyservices.src = "images/therapy/navigation/services.jpg";
	therapyservicesOver = new Image();
	therapyservicesOver.src = "images/therapy/navigation/services-over.jpg";

	therapypayment = new Image();
	therapypayment.src = "images/therapy/navigation/payment.jpg";
	therapypaymentOver = new Image();
	therapypaymentOver.src = "images/therapy/navigation/payment-over.jpg";
	
	therapybio = new Image();
	therapybio.src = "images/therapy/navigation/bio.jpg";
	therapybioOver = new Image();
	therapybioOver.src = "images/therapy/navigation/bio-over.jpg";

	therapycontact = new Image();
	therapycontact.src = "images/therapy/navigation/contact.jpg";
	therapycontactOver = new Image();
	therapycontactOver.src = "images/therapy/navigation/contact-over.jpg";

	therapylocations = new Image();
	therapylocations.src = "images/therapy/navigation/locations.jpg";
	therapylocationsOver = new Image();
	therapylocationsOver.src = "images/therapy/navigation/locations-over.jpg";

	therapylinks = new Image();
	therapylinks.src = "images/therapy/navigation/links.jpg";
	therapylinksOver = new Image();
	therapylinksOver.src = "images/therapy/navigation/links-over.jpg";

	therapyclientdocs = new Image();
	therapyclientdocs.src = "images/therapy/navigation/clientdocs.jpg";
	therapyclientdocsOver = new Image();
	therapyclientdocsOver.src = "images/therapy/navigation/clientdocs-over.jpg";

	clientdocs_button = new Image();
	clientdocs_button.src = "images/therapy/clientdocs_button.gif";
	clientdocs_buttonOver = new Image();
	clientdocs_buttonOver.src = "images/therapy/clientdocs_button_over.gif";
	
}

function select(imageName) {
	if (document.images) {
		document[imageName].src = eval(imageName + "Over.src");
	}
}

function deselect(imageName) {
	if (document.images) {
		document[imageName].src = eval(imageName + ".src");
	}
}