		
			// preload our magical image flips
			
			imgIconTelephoneOn = new Image(136,25);
			imgIconTelephoneOn.src = "../img-src/icon_telephone_on.jpg";
			imgIconTelephoneOff = new Image(136,25);
			imgIconTelephoneOff.src = "../img-src/icon_telephone.jpg";

			imgIconVoiceOn = new Image(136,25);
			imgIconVoiceOn.src = "../img-src/icon_voice_on.jpg";
			imgIconVoiceOff = new Image(136,25);
			imgIconVoiceOff.src = "../img-src/icon_voice.jpg";

			imgIconServicesOn = new Image(136,25);
			imgIconServicesOn.src = "../img-src/icon_services_on.jpg";
			imgIconServicesOff = new Image(136,25);
			imgIconServicesOff.src = "../img-src/icon_services.jpg";

			imgIconPortfolioOn = new Image(136,25);
			imgIconPortfolioOn.src = "../img-src/icon_portfolio_on.jpg";
			imgIconPortfolioOff = new Image(136,25);
			imgIconPortfolioOff.src = "../img-src/icon_portfolio.jpg";

			imgIconInterestOn = new Image(136,25);
			imgIconInterestOn.src = "../img-src/icon_interest_on.jpg";
			imgIconInterestOff = new Image(136,25);
			imgIconInterestOff.src = "../img-src/icon_interest.jpg";

			imgIconContactOn = new Image(136,25);
			imgIconContactOn.src = "../img-src/icon_contact_on.jpg";
			imgIconContactOff = new Image(136,25);
			imgIconContactOff.src = "../img-src/icon_contact.jpg";

			imgIconAboutUsOn = new Image(136,23);
			imgIconAboutUsOn.src = "../img-src/icon_aboutus_on.jpg";
			imgIconAboutUsOff = new Image(136,23);
			imgIconAboutUsOff.src = "../img-src/icon_aboutus.jpg";
			
			
			function iconsOn(icon)
			{
				if (icon == "telephone")
					document.telephone.src = imgIconTelephoneOn.src;
				else if (icon == "voice")
					document.voice.src = imgIconVoiceOn.src;
				else if (icon == "services")
					document.services.src = imgIconServicesOn.src;
				else if (icon == "portfolio")
					document.portfolio.src = imgIconPortfolioOn.src;
				else if (icon == "interest")
					document.interest.src = imgIconInterestOn.src;
				else if (icon == "contact")
					document.contact.src = imgIconContactOn.src;
				else if (icon == "aboutus")
					document.aboutus.src = imgIconAboutUsOn.src;
					
				return true;
			}



			function iconsOff(icon)
			{
				if (icon == "telephone")
					document.telephone.src = imgIconTelephoneOff.src;
				else if (icon == "voice")
					document.voice.src = imgIconVoiceOff.src;
				else if (icon == "services")
					document.services.src = imgIconServicesOff.src;
				else if (icon == "portfolio")
					document.portfolio.src = imgIconPortfolioOff.src;
				else if (icon == "interest")
					document.interest.src = imgIconInterestOff.src;
				else if (icon == "contact")
					document.contact.src = imgIconContactOff.src;
				else if (icon == "aboutus")
					document.aboutus.src = imgIconAboutUsOff.src;

				return true;
			}
			