var message ="The Department of Agriculture has been created mainly to provide Agricultural Extension services to farmers and to transfer the latest technical knowledge to the farming community, introduction of high yielding varieties, laying demonstrations, imparting training to farmers to improve skills knowledge to boost up the agricultural production and productivity. The other objectives of the Department are to assess requirements of agriculture inputs well in advance and to regulate their production and monitor timely supply of seeds, fertilizers and pesticides, implements, credit etc., to farmers."

var neonbasecolor="#cccccc"
var neontextcolor="#668B1E"
var flashspeed=100  
var n=0

if (document.all||document.getElementById)
	{

	document.write('<font face="Verdana" color="'+neonbasecolor+'">')
	for (m=0;m<message.length;m++)
	document.write('<span id="neonlight'+m+'">'+message.charAt(m)+'</span>')
	document.write('</font>')
	}
else
{
document.write(message)

}


function crossref(number)
{
var crossobj=document.all? eval("document.all.neonlight"+number) : document.getElementById("neonlight"+number)
return crossobj
}



function neon()
{
//Change all letters to base color
if (n==0){
for (m=0;m<message.length;m++)
//eval("document.all.neonlight"+m).style.color=neonbasecolor
crossref(m).style.color=neonbasecolor
}
//cycle through and change individual letters to neon color
crossref(n).style.color=neontextcolor
if (n<message.length-1) n++
else
{
n=0
clearInterval(flashing)
setTimeout("beginneon()",1500)
return
}
}

function beginneon(){
if (document.all||document.getElementById)
flashing=setInterval("neon()",flashspeed)
}
beginneon() 