$(document).ready(function(){

	$( "div.posterrank" ).each(
		function(){
			var rankName = $(this).html();
			if ( rankName == 'Super Dude' ) {
				$(this).closest('tr').children('td').css('background-color','#ffedd0');
				$(this).closest('tr').next('tr').children('td').css('background','#ffedd0 url(images/profile_superdude.gif) top left repeat-x');
			}
		}
	);

});