	if (document.images) {	// Active Images
		homeon = new Image();      
		homeon.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-home-2.jpg"; 
		adopton = new Image();      
		adopton.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-adoption-2.jpg"; 
		abouton = new Image();
		abouton.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-about-2.jpg";
		faqon = new Image();
		faqon.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-faq-2.jpg";
		linkson = new Image();
		linkson.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-links-2.jpg";
		contactuson = new Image();
		contactuson.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-contactus-2.jpg";
		volunteeron = new Image();
		volunteeron.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-volunteer-2.jpg";
		donateon = new Image();
		donateon.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-donate-2.jpg";
		daveson = new Image();
		daveson.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-daves-2.jpg";
		blogon = new Image();
		blogon.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-blog-2.jpg";

		homeoff = new Image(); 
		homeoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-home-1.jpg"; 
		adoptoff = new Image(); 
		adoptoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-adoption-1.jpg"; 
		aboutoff = new Image();
		aboutoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-about-1.jpg";
		faqoff = new Image();
		faqoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-faq-1.jpg";
		linksoff = new Image();
		linksoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-links-1.jpg";
		contactusoff = new Image();
		contactusoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-contactus-1.jpg";
		volunteeroff = new Image();
		volunteeroff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-volunteer-1.jpg";
		donateoff = new Image();
		donateoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-donate-1.jpg";
		davesoff = new Image();
		davesoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-daves-1.jpg";
		blogoff = new Image();
		blogoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/menu-blog-1.jpg";

		pawon = new Image();
		pawon.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/linkpaw-on.jpg";
		pawoff = new Image();
		pawoff.src = "http://felinefriendsinc.org/wp-content/themes/feline-friends/images/linkpaw-off.jpg";
	}

	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");
			}
	}
	
	function pawOn(imgName) {
			if (document.images) {
				document[imgName].src = eval("pawon.src");
			}
	}
  
	function pawOff(imgName) {
			if (document.images) {
				document[imgName].src = eval("pawoff.src");
			}
	}