jQuery( document ) . ready ( 
  function() {
    jQuery( 'p.answer' ).after( '<div align="right" style="margin-top: 5px;"><a class="trigger" href="#"><img src="/annmartin/images/arrow_down.gif" border="0" width="12" height="10"></a></div>' ); 
    jQuery('a.trigger').toggle ( 
      function() {
        jQuery(this).html('<img src="/annmartin/images/arrow_up.gif" border="0" width="12" height="10">');
        jQuery(this.parentNode.previousSibling).slideDown('slow');
		jQuery(this).parents("div.qaoff").toggleClass('qaon');
		jQuery(this).parents("div.qa").prev().html('<img src="../images/box_top_on.gif" width="395" height="8" />');
		jQuery(this).parents("div.qa").next().html('<img src="../images/box_btm_on.gif" width="395" height="10" />');		
      },
      function() {
        jQuery(this).html('<img src="/annmartin/images/arrow_down.gif" border="0" width="12" height="10">');
        jQuery(this.parentNode.previousSibling).slideUp('slow');
		jQuery(this).parents("div.qaoff").toggleClass('qaon');
		jQuery(this).parents("div.qa").prev().html('<img src="../images/box_top_off.gif" width="395" height="8" />');
		jQuery(this).parents("div.qa").next().html('<img src="../images/box_btm_off.gif" width="395" height="10" />');
      }
    )
  }
)
