My existing JavaScript code changes the background color of a link when it is clicked:
$(".button").click(function(){
$(this).css('background-color', '#555');
});
While this functionality works, I am looking to have the color toggle off when another link is clicked.