var loop = true;    // toggle on/off  20
var xpos = "2";    // left distance   30
var ypos = "3";    // top distance
var wide = "325";   // layer width
var rate = "300";   // change speed

var cnum = "1";
var c = new Array();

c[1] = "#000000";
c[2] = "#202020";
c[3] = "#414141";
c[4] = "#616161";
c[5] = "#828282";
c[6] = "#929292";
c[7] = "#939393";
c[8] = "#939393";
c[9] = "#939393";
c[10] = "#939393";
c[11] = "#929292";
c[12] = "#828282";
c[13] = "#616161";
c[14] = "#414141";
c[15] = "#202020";
c[16] = "#000000";

function glow()
{
if(document.all)
	{ 
	  if(tnum < t.length)
		{
			if(cnum < c.length-1)
			{
				document.all("hi").innerHTML = "<a href=/news style=\"font-family:Arial;font-size:12px;text-decoration:none; color:"+c[cnum]+"\">"+t[tnum]+"</a>";
				document.all("hi").innerHTML = "<a href=/news style=\"font-family:Arial;font-size:12px;text-decoration:none; color:"+c[cnum]+"\">"+t[tnum]+"</a>";
				cnum ++;
			}	
			else
			{
			  cnum = 1;
        tnum ++;
        if(loop)
        {
          if(tnum == t.length) tnum = 1;
        }
			}
	    setTimeout("glow()",rate);
		}
    else document.all("hi").innerHTML = "";
}else{
		
		if(tnum < t.length)
		{
			if(cnum < c.length-1)
			{
				document.getElementById('hi').innerHTML = "<a href=/news style=\"font-family:Arial;font-size:12px;text-decoration:none; color:"+c[cnum]+"\">"+t[tnum]+"</a>";
				//document.layers["hi"].document.close();
				cnum++;
			}
			else
			{	
        cnum = 1;
			  tnum++;
        if(loop)
        {
          if(tnum == t.length) tnum = 1;
        }
			}
  		setTimeout("glow()",rate);
		}else{
      	document.layers["hi"].document.write("");
	    	document.layers["hi"].document.close();
    	}
	}

}