<script>
function ChangeColor(Element) {
if (Element.style.backgroundColor == 'green') Element.style.backgroundColor = 'red';
else Element.style.backgroundColor = 'green';
return false;
}
</script>
<a href="#" style="background-color: green;" onclick="return ChangeColor(this);">Изменить цвет</a>