function cycleColor( who, i ){
	if ( i==null ) i = parseInt('cf' , 16)
	var h=getHex( i )
	hexColor='#'+h+h+h;
	document.all[who].style.backgroundColor = hexColor;
	if (i<251){
		setTimeout('cycleColor(\''+who+'\','+(i+3)+' )' , 50);
	}
}
function getHex( d ){
	var h = d.toString(16);
	if( h.length < 2 ) h = '0' + h;
	return h.toUpperCase();
}
