	// 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";
		
		var activePricingBtn   = new Image();
		activePricingBtn.src   ="../images/btnPricing2.gif";		
		var inactivePricingBtn = new Image();
		inactivePricingBtn.src ="../images/btnPricing1.gif";
		var activeGalleryBtn   = new Image();
		activeGalleryBtn.src   ="../images/btnGalleryb.gif";		
		var inactiveGalleryBtn = new Image();
		inactiveGalleryBtn.src ="../images/btnGallerya.gif";
		var activeGallery1Btn   = new Image();
		activeGallery1Btn.src   ="../images/btnGallery1b.gif";		
		var inactiveGallery1Btn = new Image();
		inactiveGallery1Btn.src ="../images/btnGallery1a.gif";
		var activeGallery2Btn   = new Image();
		activeGallery2Btn.src   ="../images/btnGallery2b.gif";		
		var inactiveGallery2Btn = new Image();
		inactiveGallery2Btn.src ="../images/btnGallery2a.gif";
		var activeGallery3Btn   = new Image();
		activeGallery3Btn.src   ="../images/btnGallery3b.gif";		
		var inactiveGallery3Btn = new Image();
		inactiveGallery3Btn.src ="../images/btnGallery3a.gif";
		var activeGallery4Btn   = new Image();
		activeGallery4Btn.src   ="../images/btnGallery4b.gif";		
		var inactiveGallery4Btn = new Image();
		inactiveGallery4Btn.src ="../images/btnGallery4a.gif";
		var activeGallery5Btn   = new Image();
		activeGallery5Btn.src   ="../images/btnGallery5b.gif";		
		var inactiveGallery5Btn = new Image();
		inactiveGallery5Btn.src ="../images/btnGallery5a.gif";
		var activeGallery6Btn   = new Image();
		activeGallery6Btn.src   ="../images/btnGallery6b.gif";		
		var inactiveGallery6Btn = new Image();
		inactiveGallery6Btn.src ="../images/btnGallery6a.gif";
		var activeGallery7Btn   = new Image();
		activeGallery7Btn.src   ="../images/btnGallery7b.gif";		
		var inactiveGallery7Btn = new Image();
		inactiveGallery7Btn.src ="../images/btnGallery7a.gif";


		var activeFaqBtn   = new Image();
		activeFaqBtn.src   ="../images/btnfaqb.gif";		
		var inactiveFaqBtn = new Image();
		inactiveFaqBtn.src ="../images/btnfaqa.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; 

	}

	function switchPricing(_onOff) {
		if (_onOff=="on")
	document.pricing.src=activePricingBtn.src;  
	else
	document.pricing.src=inactivePricingBtn.src; 

	}
	function switchGallery(_onOff) {
		if (_onOff=="on")
	document.gallery.src=activeGalleryBtn.src;  
	else
	document.gallery.src=inactiveGalleryBtn.src; 

	}
	function switchGallery1(_onOff) {
		if (_onOff=="on")
	document.gallery1.src=activeGallery1Btn.src;  
	else
	document.gallery1.src=inactiveGallery1Btn.src; 

	}
	function switchGallery2(_onOff) {
		if (_onOff=="on")
	document.gallery2.src=activeGallery2Btn.src;  
	else
	document.gallery2.src=inactiveGallery2Btn.src; 

	}
	function switchGallery3(_onOff) {
		if (_onOff=="on")
	document.gallery3.src=activeGallery3Btn.src;  
	else
	document.gallery3.src=inactiveGallery3Btn.src; 

	}
	function switchGallery4(_onOff) {
		if (_onOff=="on")
	document.gallery4.src=activeGallery4Btn.src;  
	else
	document.gallery4.src=inactiveGallery4Btn.src; 

	}
	function switchGallery5(_onOff) {
		if (_onOff=="on")
	document.gallery5.src=activeGallery5Btn.src;  
	else
	document.gallery5.src=inactiveGallery5Btn.src; 

	}
	function switchGallery6(_onOff) {
		if (_onOff=="on")
	document.gallery6.src=activeGallery6Btn.src;  
	else
	document.gallery6.src=inactiveGallery6Btn.src; 

	}
	function switchGallery7(_onOff) {
		if (_onOff=="on")
	document.gallery7.src=activeGallery7Btn.src;  
	else
	document.gallery7.src=inactiveGallery7Btn.src; 

	}


	function switchFaq(_onOff) {
		if (_onOff=="on")
	document.faq.src=activeFaqBtn.src;  
	else
	document.faq.src=inactiveFaqBtn.src; 

	}

