trying to swap two images depending on which the user has clicked.
so it should hide the image that the user has just clicked and show the one that was hidden.
must be something simple wrong here...
<!-- toggle for contrast buttons -->
<script type=text/javascript>
$("a.contrast-button").click(function () {
$("a.contrast-button").toggle();
});
</script>
<div class="span-16 last" id="access-controls">
<a class="contrast-button" id="switchDark" href="#"><img src="/static/images/contrast-dark.png" /></a>
<a class="contrast-button" id="switchRed" style="display:none;" href="#" ><img src="/static/images/contrast-light.png" /></a>
<a class="access-nav" href="#">contrast:</a>
</div>