// ==UserScript==
// @name	TopColor
// @include	http://forums.topcoder.com/*
// @include	https://forums.topcoder.com/*
// ==/UserScript==

var as = document.getElementsByTagName("a");
for(n=0;n<as.length;++n) {
    if(as[n].className.indexOf("coderText")==0) {
        s=as[n].firstChild.data;
        if(s == 'dskloet') as[n].className='coderTextRed';
        else if(s == 'NeverMore' && as[n].className == 'coderTextYellow')
		as[n].className='coderTextRed';
    }
}
