Here's the bottom code for a dark grey fade in.
Thanks for the mod freddie.
Code:
var color = new Array('#EEEEEE', '#DDDDDD', '#CCCCCC', '#BBBBBB', '#AAAAAA', '#999999', '#888888', '#777777', '#666666', '#555555', '#444444', '#333333', '#222222');
function highlightpost(index, style)
{
// style = 1 yellow fade -- add more colors to the color array above to increase the color range
// style = 2 alternate alt 1 / alt 2 change this 4 below to an even number to increase the flashes
index = (index == -1) ? (style == 1 ? color.length : 8) : index;
obj = fetch_object('qrpost');
if (obj)
{
tds = fetch_tags(obj, 'td');
cells = new Array();
for (var i = 0; i < tds.length; i++)
{
cell = tds[i];
if (cell.className == 'alt1' || cell.className == 'alt2')
{
cells[cells.length] = tds[i];
}
}
index -= 1;
if (cells.length > 0 && index >= 0)
{
for (var i = 0; i < cells.length; i++)
{
if (style == 1)
{
cells[i].style.backgroundColor = color[index];
}
else
{
cells[i].className = (cells[i].className == 'alt1') ? 'alt2' : 'alt1';
}
}
// increase 200 to lengthen the color change cycle
setTimeout('highlightpost(' + index + ', ' + style + ')', 75);
}
else
{
if (cells.length > 0 && style == 1)
{
for (var i = 0; i < cells.length; i++)
{
cells[i].style.backgroundColor = '';
}
}
obj.id = '';
}
}
}