contacton= new Image(); contacton.src = "../images/generic/contactUs_on.gif";
contactoff= new Image(); contactoff.src = "../images/generic/contactUs.gif";
testimonialon= new Image(); testimonialon.src = "../images/generic/testimonials_on.gif";
testimonialoff= new Image(); testimonialoff.src = "../images/generic/testimonials.gif";

		
		

// Function to "activate" images
function imgAct(imgName){ 
document[imgName].src = eval(imgName + "on" + ".src");
        }

// Function to "de-activate" images
function imgInact(imgName) { 
document[imgName].src = eval(imgName + "off"+ ".src");
        }