Jquery Color change

Jquery Color change

Hey,
I am currently trying to change the color of my text in jquery.  The problem im having is im not sure how to change my color back to the original css color when I click on the other link.  Instead the color just remains and does not go away.
(By the way im not strong on this language so keep it simple for me)
Cheers.

Here is my code:



$('#navigation ul.submenu li a.sug').click(function() {
        $('#navigation ul.submenu li a.sug').css("color","#e1519f");
});
$('#navigation ul.submenu li a.man').click(function() {
        $('#navigation ul.submenu li a.man').css("color","#f5a33b");
  });
});