Image

jQuery - my current code

$(document).ready(function() {
$('div.formHelp > div').hide();
$('div.formHelp > img').click(function() {
$(this).next('div').toggle('normal');
if
($(this).attr("src","/images/css/formHintButton.gif"))
($(this).attr("src","/images/css/formHintButtonSelected.gif"))
else
($(this).attr("src","/images/css/formHintButtonSelected.gif"))
($(this).attr("src","/images/css/formHintButton.gif"))
return false;
});
});

Basically, this will show a hidden div and swap the image - unfortunately, it still doesn't swap the image BACK. I'm still working on it...