	var intSpacing = 4;
	var intSpacingDelay = 250;
	var intHeaderHiLitDelay = 500;
	
	function Highlighter()
	{
		setTimeout('HiLitAppDev()',500);	
	}
	
	function HiLitAppDev()
	{
		Index_AppDev.style.color = "red";
		setTimeout('DeLitAppDev()',intSpacingDelay);	
	}
	
	function DeLitAppDev()
	{
		Index_AppDev.style.color = "#982020";
		setTimeout('HiLitServices()',intHeaderHiLitDelay);	
	}

	function HiLitServices()
	{
		Index_Services.style.color = "red";
		setTimeout('DeLitServices()',intSpacingDelay);	
	}
	
	function DeLitServices()
	{
		Index_Services.style.color = "#982020";
		setTimeout('HiLitTech()',intHeaderHiLitDelay);	
	}

	function HiLitTech()
	{
		Index_Tech.style.color = "red";
		setTimeout('DeLitTech()',intSpacingDelay);	
	}
	
	function DeLitTech()
	{
		Index_Tech.style.color = "#982020";
	}
	
	function Services_TextMOver(intItemId)
	{
		if(intItemId == 1)
			Services_Text1Bullet.src="images/bullet1_green.gif";

		if(intItemId == 2)
			Services_Text2Bullet.src="images/bullet1_green.gif";

		if(intItemId == 3)
			Services_Text3Bullet.src="images/bullet1_green.gif";

		if(intItemId == 4)
			Services_Text4Bullet.src="images/bullet1_green.gif";

		if(intItemId == 5)
			Services_Text5Bullet.src="images/bullet1_green.gif";

		if(intItemId == 6)
			Services_Text6Bullet.src="images/bullet1_green.gif";
	}
	
	function Services_TextMExit(intItemId)
	{
		if(intItemId == 1)
			Services_Text1Bullet.src="images/bullet1.gif";

		if(intItemId == 2)
			Services_Text2Bullet.src="images/bullet1.gif";

		if(intItemId == 3)
			Services_Text3Bullet.src="images/bullet1.gif";

		if(intItemId == 4)
			Services_Text4Bullet.src="images/bullet1.gif";

		if(intItemId == 5)
			Services_Text5Bullet.src="images/bullet1.gif";

		if(intItemId == 6)
			Services_Text6Bullet.src="images/bullet1.gif";
	}

	function Tech_TextMOver(intItemId)
	{
		if(intItemId == 1)
			Tech_Text1Bullet.src="images/bullet1_green.gif";

		if(intItemId == 2)
			Tech_Text2Bullet.src="images/bullet1_green.gif";

		if(intItemId == 3)
			Tech_Text3Bullet.src="images/bullet1_green.gif";
	}
	
	function Tech_TextMExit(intItemId)
	{
		if(intItemId == 1)
			Tech_Text1Bullet.src="images/bullet1.gif";

		if(intItemId == 2)
			Tech_Text2Bullet.src="images/bullet1.gif";

		if(intItemId == 3)
			Tech_Text3Bullet.src="images/bullet1.gif";
	}
	
	function SMenu_TextMOver(intItemId)
	{
		if(intItemId == 1)
		{
			SMenuBullet1.src="images/bullet2_arrow.gif";
			SMenu_Text1.style.color = "white";
			Index_AppDev.style.color = "red";
		}

		if(intItemId == 2)
		{
			SMenuBullet2.src="images/bullet2_arrow.gif";
			SMenu_Text2.style.color = "white";
			Index_Services.style.color = "red";
		}

		if(intItemId == 3)
		{
			SMenuBullet3.src="images/bullet2_arrow.gif";
			SMenu_Text3.style.color = "white";
			Index_Tech.style.color = "red";
		}
	}
	
	function SMenu_TextMExit(intItemId)
	{
		if(intItemId == 1)
		{
			SMenuBullet1.src="images/bullet2.gif";
			SMenu_Text1.style.color = "Gainsboro";
			Index_AppDev.style.color = "#982020";
		}

		if(intItemId == 2)
		{
			SMenuBullet2.src="images/bullet2.gif";
			SMenu_Text2.style.color = "Gainsboro";
			Index_Services.style.color = "#982020";
		}

		if(intItemId == 3)
		{
			SMenuBullet3.src="images/bullet2.gif";
			SMenu_Text3.style.color = "Gainsboro";
			Index_Tech.style.color = "#982020";
		}
	}	
	