Parent's Children

Parent's Children

I have an accordian and I'm trying to access the parent of the open item and then the anchor child of that parent.
 
The accordian works just fine, but when it's active, I want the anchor tag in the dt to change colors as well.
 
HTML
  1. <dl id="ann">
  2. <dt><a href="javascript:void(0);">Sunday <span>Click to Expand</span></a></dt>
  3. <dd class="active">Pellentesque fermentum dolor. Aliquam quam lectus, facilisis auctor, ultrices ut, elementum vulputate, nunc.</dd>
  4. <dt><a href="javascript:void(0);">Monday <span>Click to Expand</span></a></dt>
  5. <dd>Donec nec justo eget felis facilisis fermentum. Aliquam porttitor mauris sit amet orci. Aenean dignissim pellentesque felis.</dd>
  6. <dt><a href="javascript:void(0);">Tuesday <span>Click to Expand</span></a></dt>
  7. <dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Phasellus hendrerit. Pellentesque aliquet nibh nec urna. In nisi neque, aliquet vel, dapibus id, mattis vel, nisi. Sed pretium, ligula sollicitudin laoreet viverra, tortor libero sodales leo, eget blandit nunc tortor eu nibh. Nullam mollis. Ut justo. Suspendisse potenti.</dd>
  8. </dl>
jQuery
 
  1. (function ($) {
  2.     var allPanels = $('#ann > dd').hide();
  3.     $('#ann dd.active').show();
  4.     
  5.     $('#ann > dt > a').click(function () {
            $this = $(this);
            $target = $this.parent().next();

  6.         if (!$target.hasClass('active')) {
                allPanels.removeClass('active').slideUp();
                $target.addClass('active').slideDown();

  7.             //something here should target the anchor tag inside of the parent's dt to change the color when it is active
            }
  8.         return false;
        });
  9. })(jQuery)
 
I'm guessing it has something to do with .parent()
 
Thanks!