			// web hosting
			// ----------------------------------------------------------------------------------
			imgIconWebHostingOn = new Image(138,42);
			imgIconWebHostingOn.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/icon_webhosting_on.jpg";
			imgIconWebHostingOff = new Image(138,42);
			imgIconWebHostingOff.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/icon_webhosting.jpg";

			// web apps
			// ----------------------------------------------------------------------------------
			imgIconWebAppsOn = new Image(114,42);
			imgIconWebAppsOn.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/icon_webapps_on.jpg";
			imgIconWebAppsOff = new Image(114,42);
			imgIconWebAppsOff.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/icon_webapps.jpg";

			// web sites
			// ----------------------------------------------------------------------------------
			imgIconWebSitesOn = new Image(120,42);
			imgIconWebSitesOn.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/icon_websites_on.jpg";
			imgIconWebSitesOff = new Image(120,42);
			imgIconWebSitesOff.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/icon_websites.jpg";

			// software
			// ----------------------------------------------------------------------------------
			//imgIconSoftwareOn = new Image(115,42);
			//imgIconSoftwareOn.src = "/epoch/skins/geekatinum2/img-src/icon_software_on.jpg";
			//imgIconSoftwareOff = new Image(115,42);
			//imgIconSoftwareOff.src = "/epoch/skins/geekatinum2/img-src/icon_software.jpg";

			// about us
			// ----------------------------------------------------------------------------------
			imgIconCompanyOn = new Image(115,42);
			imgIconCompanyOn.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/icon_aboutus_on.jpg";
			imgIconCompanyOff = new Image(115,42);
			imgIconCompanyOff.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/icon_aboutus.jpg";

			// right arrow
			// ----------------------------------------------------------------------------------
			imgIconRightArrowOn = new Image();
			imgIconRightArrowOn.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/home/icon_right_arrow_on.html";
			imgIconRightArrowOff = new Image();
			imgIconRightArrowOff.src = "http://www.geekdeveloper.com/epoch/skins/geekatinum2/img-src/home/icon_right_arrow.gif";
			

			function iconsOn(icon)
			{
				if (icon == "webhosting")
					document.webhosting.src = imgIconWebHostingOn.src;

				else if (icon == "webapps")
					document.webapps.src = imgIconWebAppsOn.src;

				else if (icon == "websites")
					document.websites.src = imgIconWebSitesOn.src;

				else if (icon == "software")
					document.software.src = imgIconSoftwareOn.src;

				else if (icon == "aboutus")
					document.aboutus.src = imgIconCompanyOn.src;

				return true;
			}



			function iconsOff(icon)
			{
				if (icon == "webhosting")
					document.webhosting.src = imgIconWebHostingOff.src;

				else if (icon == "webapps")
					document.webapps.src = imgIconWebAppsOff.src;

				else if (icon == "websites")
					document.websites.src = imgIconWebSitesOff.src;

				else if (icon == "software")
					document.software.src = imgIconSoftwareOff.src;

				else if (icon == "aboutus")
					document.aboutus.src = imgIconCompanyOff.src;

				return true;
			}
