	hexinput=255  // Initial color value.
	var inc=-1 //increment variable

function fadingtext(){	         	

	if(hexinput>0) {	
	
		hexinput-=11; // increase color value	
		document.getElementById("slideshow").style.color="rgb("+hexinput+","+hexinput+","+hexinput+")"; // Set color value.	
		setTimeout("fadingtext()",20);	
	
	}
	
	else
	hexinput=255  //reset hex value

}



function changetext(){
	
	if (!document.getElementById) return
	inc++
	
	if (inc==0)
		document.getElementById("slideshow").innerHTML="<p class='date'>Nov 10, 2011</p><h2>Instruments</h2><p>Vadodara Mahanagar Seva Sadan installed more than 125 SLC 02 25 GSM (street light management system with energy saving in street lighting) which was first high-tech</p>"
	
	else if (inc==1)
		document.getElementById("slideshow").innerHTML="<p class='date'>July 29, 2011</p><h2>Instruments</h2><p>Vadodara Mahanagar Seva Sadan installed 49 SLC 02 25 GSM (street light management system with energy saving in street lighting) which was first high-tech</p>"
	
	else if (inc==2)
		document.getElementById("slideshow").innerHTML="<p class='date'>August 11, 2011</p><h2>Universal</h2><p><b>Instruments Universal</b> was established in 1980. Today we have evolved into a high-technology organization</p>"
	
	else{
	document.getElementById("slideshow").innerHTML="<p class='date'>August 15, 2011</p><h2>India</h2><p>Inheriting a legacy of pioneering technology and expertise in effluent sampling automation since last 30 years</p>"
	
	inc=-1
	
	}
	
	fadingtext()
	
	setTimeout("changetext()",4000)
	
	}

	window.onload=changetext
