// JavaScript Document
function bw_check()
	{
		var is_major=parseInt(navigator.appVersion);
		this.nver=is_major;
		this.ver=navigator.appVersion;
		this.agent=navigator.userAgent;
		this.dom=document.getElementById?1:0;
		this.opera=window.opera?1:0;	
		this.ie55=(this.ver.indexOf("MSIE 5.5")>-1&&this.dom&&!this.opera)?1:0;	
		this.ie5=(this.ver.indexOf("MSIE 5")>-1&&this.dom&&!this.ie55&&!this.opera)?1:0;
		this.ie6=(this.ver.indexOf("MSIE 6")>-1&&this.dom&&!this.opera)?1:0;
		this.ie4=(document.all&&!this.dom&&!this.opera)?1:0;
		this.ie=this.ie4||this.ie5||this.ie6;
		this.mac=this.agent.indexOf("Mac")>-1;
		this.ns6=(this.dom&&parseInt(this.ver)>=5)?1:0;
		this.ie3=(this.ver.indexOf("MSIE")&&(is_major<4));
		this.hotjava=(this.agent.toLowerCase().indexOf('hotjava')!=-1)?1:0;
		this.ns4=(document.layers&&!this.dom&&!this.hotjava)?1:0;
		this.bw=(this.ie6||this.ie5||this.ie4||this.ns4||this.ns6||this.opera);
		this.ver3=(this.hotjava||this.ie3);
		this.opera7=((this.agent.toLowerCase().indexOf('opera 7')>-1) || (this.agent.toLowerCase().indexOf('opera/7')>-1));
		this.operaOld=this.opera&&!this.opera7;
		return this;
	};

	var lat_news_one=" ";
	var lat_news_two=" ";
	var lat_news_three=" ";
	var lat_news_four=" ";
	var prev=" ";
	news_toggle=1;
	lat_news_one="<p class='bodyTxt2'><b>Experience</b><UL> <LI>Over 1200 corporate clients</LI><LI> Manages over 60,000 devices</LI><LI>More than a million person hours of experience</LI><LI> over 2500+ change tickets annually</LI></UL> </p>";
	lat_news_two="<p class='bodyTxt2'><b>Delivery team - 800 strong</b><UL><LI>Network and systems certifications</LI><LI>Security certifications</LI><LI>Process certifications</LI><UL></p>";
	lat_news_three="<p class='bodyTxt2'><b>Global connectivity</b><UL><LI>Across 4 diverse oceanic paths from India</LI><LI>International points of presence at New York, Los Angeles, London, Singapore &amp; Hong Kong </LI></UL></p>";
	lat_news_four="<p class='bodyTxt2'><b>Extensive service infrastructure</b><UL><LI>Service infrastructure with over 99.99% availability</LI><LI>Command centers at Chennai, Mumbai and Bangalore</LI><UL></p>";
	prev="null";
	
	function change_news(news_val)
	{
		if (prev != news_val)
		{
			switch(news_val)
			{	
				case "1"  :
						if (bw.ns4) 
						{ 
	  						document.lat_news.document.open(); 
							document.lat_news.document.write(lat_news_one);
							document.slideshowlayer.document.close(); 	
						} 
						else if (bw.ns6) 
						{
							document.getElementById("lat_news").innerHTML = lat_news_one; 							
						} 
						else
						{ 
							lat_news.innerHTML = lat_news_one; 
						}
						break;

				case "2"  :
						if (bw.ns4) 
						{ 
	  						document.lat_news.document.open(); 
							document.lat_news.document.write(lat_news_two);
							document.slideshowlayer.document.close(); 	

						} 
						else if (bw.ns6) 
						{
							document.getElementById("lat_news").innerHTML = lat_news_two; 							
						} 
						else
						{ 
							lat_news.innerHTML = lat_news_two; 
						}
						break;
				case "3"  :
						if (bw.ns4) 
						{ 
	  						document.lat_news.document.open(); 
							document.lat_news.document.write(lat_news_three);
							document.slideshowlayer.document.close(); 	

						} 
						else if (bw.ns6) 
						{
							document.getElementById("lat_news").innerHTML = lat_news_three; 							
						} 
						else
						{ 
							lat_news.innerHTML = lat_news_three; 
						}
						break;
					case "4"  :
						if (bw.ns4) 
						{ 
	  						document.lat_news.document.open(); 
							document.lat_news.document.write(lat_news_four);
							document.slideshowlayer.document.close(); 	

						} 
						else if (bw.ns6) 
						{
							document.getElementById("lat_news").innerHTML = lat_news_four; 							
						} 
						else
						{ 
							lat_news.innerHTML = lat_news_four; 
						}
						break;
					prev=val;
			}
		}
	}

function changeLatestNews()
{
	if(news_toggle==1) news_val="1";
	if(news_toggle==2) news_val="2";
	if(news_toggle==3) news_val="3";
	if(news_toggle==4) news_val="4";
	setTimeout('change_news(news_val);news_controller();',8000);
}

function news_controller()
{
	news_toggle += 1;
	if (news_toggle == 5) news_toggle = 1;
	changeLatestNews();
}