// this script was modified from source created by Briandy Walden

if (document.images) {

img1on = new Image();
img1on.src = "images/home2.gif";
img2on = new Image();
img2on.src = "images/about2.gif";
img3on = new Image();
img3on.src = "images/exam2.gif";
img4on = new Image();
img4on.src = "images/chiro2.gif";
img5on = new Image();
img5on.src = "images/faqs2.gif";
img6on = new Image();
img6on.src = "images/visit2.gif";
img7on = new Image();
img7on.src = "images/contact2.gif";

img1off = new Image();
img1off.src = "images/home.gif";
img2off = new Image();
img2off.src = "images/about.gif";
img3off = new Image();
img3off.src = "images/exam.gif";
img4off = new Image();
img4off.src = "images/chiro.gif";
img5off = new Image();
img5off.src = "images/faqs.gif";
img6off = new Image();
img6off.src = "images/visit.gif";
img7off = new Image();
img7off.src = "images/contact.gif";

text1on = new Image();
text1on.src = "images/home-text.gif"; 
text2on = new Image();
text2on.src = "images/about-text.gif"; 
text3on = new Image();
text3on.src = "images/exam-text.gif"; 
text4on = new Image();
text4on.src = "images/chiro-text.gif";
text5on = new Image();
text5on.src = "images/faqs-text.gif";
text6on = new Image();
text6on.src = "images/visit-text.gif";
text7on = new Image();
text7on.src = "images/contact-text.gif";

text1off = new Image();
text1off.src = "images/blank-text.gif"; 
text2off = new Image();
text2off.src = "images/blank-text.gif"; 
text3off = new Image();
text3off.src = "images/blank-text.gif"; 
text4off = new Image();
text4off.src = "images/blank-text.gif"; 
text5off = new Image();
text5off.src = "images/blank-text.gif"; 
text6off = new Image();
text6off.src = "images/blank-text.gif"; 
text7off = new Image();
text7off.src = "images/blank-text.gif"; 
<!--line 68-->
}
function textOn(imgName) {
	if (document.images) {
		document['blank'].src = eval(imgName + "on.src");
	}
}

function textOff(imgName) {
	if (document.images) {
		document['blank'].src = eval(imgName + "off.src");
	}
}

function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
	}
}

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
	}
}

