
	var currentServiceDisplay = 5000;
	var currentServiceAuto;
	var currentServiceId;

	function Home_Service_Show(ServiceId, blnAuto)
	{
	    currentServiceId = ServiceId;
		var objImg = document.getElementById("img_Home_Service");
		objImg.src = "images/Home_Service_" + ServiceId + ".gif";
		
		if (blnAuto == null)
		{
			window.clearTimeout(currentServiceAuto);
		}
		else
		{
			var nextServiceId = currentServiceId + 1;
			if (nextServiceId > 6) nextServiceId = 1;
			currentServiceAuto = window.setTimeout("Home_Service_Show(" + nextServiceId + ", true)",currentServiceDisplay);
		}
	}
	
	function Home_Service_Select()
	{   
        switch (currentServiceId)
	    {
	        case 1:
	            self.location.href = "Services/BoardEffectiveness.aspx";
	            break;
	        case 2:
	            self.location.href = "Services/BusinessMentoring.aspx";	            
	            break;
	        case 3:
	            self.location.href = "Services/CareerMentoring.aspx";	            
	            break;
	        case 4:
	            self.location.href = "Services/BoardandLeadership.aspx";	            
	            break;
	        case 5:
	            self.location.href = "Services/ExecutiveCoaching.aspx";	            
	            break;
	        case 6:
	            self.location.href = "Services/BoardAssessment.aspx";	            
	            break;
	    }
	}

	Home_Service_Show(1,true);		//start it running




