Note that this page includes jQuery 1.2.6 in case you want to test execution of a requires-newer-than-1.2.6 bookmarklet. If you want to do version testing, click here for a good starting point.

This bookmarklet, requiring jQuery 1.3.2:

(drag this to your bookmarks bar or right-click and add to bookmarks)

Was generated from this code:

var ladder = ['detuned', 'kiwijam', 'oenomel', 'drsteve', 'ronaldx', 'PuzzleScot', 'puzzlemad', 'dickoon', 'afcwarren', 'rodders', 'erika', 'Dataman', 'apollo1001'];
var others = ['DavidMcN', 'paulredman'];
var estonians = ['TiiT', 'umbluu', 'UrRa', 'allar'];
var me = ['driv4r'];

function userHighlight(username, colour){
	$('.highscore_tabelle tbody tr td:contains("' + username + '"), .ratingtabelle tbody tr td a:contains("' + username + '")').css("color", colour);
}

$(ladder).each(function(){
	userHighlight(this, 'blue');
});

$(others).each(function(){
	userHighlight(this, 'aqua');
});

$(estonians).each(function(){
userHighlight(this, 'green');
});

$(me).each(function(){
userHighlight(this, 'red');
});

Create another bookmarklet:

(you may want to minify your code first)