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.
$('#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");
});
});