<style type="text/css"> .Alternate, .Alternate a:link { color: #ff8000; } .Available, .Available a:link { color: #00dd00; } .Cancelled, .Cancelled a:link { color: #dd0000; text-decoration: line-through; } .Confirmed, .Confirmed a:link { color: #0080dd; } .Tentative, .Tentative a:link { color: #888888; } .WaitList, .WaitList a:link { color: #dd00dd; } </style> <script type="text/javascript"> $(document).ready(function(){ var styleEntireRow = true // *************************** // Don't Change anything below // *************************** , tmp, c; $("div[id$='signupsHolder']").find("table[class^=signupsTable]") .find('.AltGridRow,.NormGridRow').each(function(){ tmp = $(this).find('td:nth-child(2)'); c = (tmp.text()).replace(/\s+/,''); if (styleEntireRow) { $(this).addClass(c); } else { tmp.addClass(c); } }); }); </script>