[jQuery] Triggering a click

[jQuery] Triggering a click


I've got some html that looks like this:
<div class="awardheading">
<img class="plusminus" src="/images/plus.gif"> Some text here. <a
class="nominatelink" href="#">Make your nomination.</a></div>
<div class="awardnomination">
    This is award info
</div>
A click on the plusminus image shows/hides the awardnomination div.
That's working. I also want a click on the nominatelink to trigger a
click on the image...since I've already got that working.
I thought something like:
$(this).parent().next('img').trigger('click')
would work but I get nothing when clicking the link. Thanks in
advance!
jp