if (document.images) {
	pic1on = new Image();
	pic1on.src = "images/header_btn_r.jpg";  

	pic1off = new Image();
	pic1off.src = "images/header_btn.jpg";
	
	pic2on = new Image();
	pic2on.src = "images/btn_homeowner_r.jpg";  

	pic2off = new Image();
	pic2off.src = "images/btn_homeowner.jpg";
	
	pic3on = new Image();
	pic3on.src = "images/btn_realtor_r.jpg";  

	pic3off = new Image();
	pic3off.src = "images/btn_realtor.jpg";

	pic4on = new Image();
	pic4on.src = "images/btn_homemanager_r.jpg";  

	pic4off = new Image();
	pic4off.src = "images/btn_homemanager.jpg";
	
	pic5on = new Image();
	pic5on.src = "images/btn_presentation_r.jpg";  

	pic5off = new Image();
	pic5off.src = "images/btn_presentation.jpg";
	
	pic6on = new Image();
	pic6on.src = "images/btn_our-story_r.jpg";  

	pic6off = new Image();
	pic6off.src = "images/btn_our-story.jpg";


	pic8on = new Image();
	pic8on.src = "images/btn_franchise-opportunities_r.jpg";  

	pic8off = new Image();
	pic8off.src = "images/btn_franchise-opportunities.jpg";
	

	pic9on = new Image();
	pic9on.src = "images/btn_click-here_r.jpg";  

	pic9off = new Image();
	pic9off.src = "images/btn_click-here.jpg";
}

function turnOn(imgName) {
	if (document.images) {
		imgOn=eval(imgName + "on.src");
		document[imgName].src= imgOn;
	}
 }

function turnOff(imgName) {
	if (document.images) {
		imgOff=eval(imgName + "off.src");
		document[imgName].src= imgOff;
	}
}