	// This creates an image object.
		var activeHomeTab        = new Image();
	// This tells the web browser to download this image now (rather than later).
		    activeHomeTab.src    ="./images/home3.gif";
	
		var inactiveHomeTab      = new Image();
		inactiveHomeTab.src      ="./images/hometab1.gif";
		var activeAboutTab       = new Image();
		activeAboutTab.src       ="./images/about3.gif";		
		var inactiveAboutTab     = new Image();
		inactiveAboutTab.src     ="./images/abouttab1.gif";
		var activeDvdTab         = new Image();
		activeDvdTab.src         ="./images/dvd3.gif";		
		var inactiveDvdTab       = new Image();
		inactiveDvdTab.src       ="./images/dvdtab1.gif";
		var activeCardsTab       = new Image();
		activeCardsTab.src       ="./images/cards3.gif";		
		var inactiveCardsTab     = new Image();
		inactiveCardsTab.src     ="./images/cardstab1.gif";
		var activePortraitsTab   = new Image();
		activePortraitsTab.src   ="./images/portraits3.gif";		
		var inactivePortraitsTab = new Image();
		inactivePortraitsTab.src ="./images/portraitstab1.gif";
		var activeContactTab     = new Image();
		activeContactTab.src     ="./images/contact3.gif";		
		var inactiveContactTab   = new Image();
		inactiveContactTab.src   ="./images/contacttab1.gif";
		var activeReferralTab    = new Image();
		activeReferralTab.src    ="./images/referral3.gif";		
		var inactiveReferralTab  = new Image();
		inactiveReferralTab.src  ="./images/referraltab1.gif";
		var activeTestimonyTab   = new Image();
		activeTestimonyTab.src   ="./images/testimony3.gif";		
		var inactiveTestimonyTab = new Image();
		inactiveTestimonyTab.src ="./images/testimonytab1.gif";
		var activeBlogTab   = new Image();
		activeBlogTab.src   ="../images/blog3.gif";		
		var inactiveBlogTab = new Image();
		inactiveBlogTab.src ="../images/blogtab1.gif";


	function switchHome(_onOff) {
		if (_onOff=="on")
	// This replaces the image in the object "preloadedImage" and puts
	// a copy into the document image object that was defined up above
	// with the "img" tag.
	document.home.src=activeHomeTab.src;  
	else
	document.home.src=inactiveHomeTab.src; 

	}
	function switchAbout(_onOff) {
		if (_onOff=="on")
	document.about.src=activeAboutTab.src;  
	else
	document.about.src=inactiveAboutTab.src; 

	}
	function switchDVD(_onOff) {
		if (_onOff=="on")
	document.dvd.src=activeDvdTab.src;  
	else
	document.dvd.src=inactiveDvdTab.src; 

	}
	function switchCards(_onOff) {
		if (_onOff=="on")
	document.cards.src=activeCardsTab.src;  
	else
	document.cards.src=inactiveCardsTab.src; 

	}
	function switchPortraits(_onOff) {
		if (_onOff=="on")
	document.portraits.src=activePortraitsTab.src;  
	else
	document.portraits.src=inactivePortraitsTab.src; 

	}
	function switchContact(_onOff) {
		if (_onOff=="on")
	document.contact.src=activeContactTab.src;  
	else
	document.contact.src=inactiveContactTab.src; 

	}
	function switchReferral(_onOff) {
		if (_onOff=="on")
	document.referral.src=activeReferralTab.src;  
	else
	document.referral.src=inactiveReferralTab.src; 

	}
	function switchTestimony(_onOff) {
		if (_onOff=="on")
	document.testimony.src=activeTestimonyTab.src;  
	else
	document.testimony.src=inactiveTestimonyTab.src; 

	}
	function switchBlog(_onOff) {
		if (_onOff=="on")
	document.blog.src=activeBlogTab.src;  
	else
	document.blog.src=inactiveBlogTab.src; 

	}

