Toggle/Change Row Color

Toggle/Change Row Color

Im sure there is a really simple way to do this but I dunno how.

All I want is to change the background color of a row when you click on it. If you click on another row in that table, the original clicked on row reverts back to it's original color and the newly clicked row gets the new color.

I have the following code that works okay, but doesn't change the previously clicked row back to it's original color when clicking on another row.

$('tr.clickME').click(function() {
            $(this).toggleClass('colorMe');
        });