jQuery(document).ready(function(){
  jQuery('dl.faqList').children('dd').hide().prepend('A: ').siblings('dt').bind('click', function(e){
    jQuery(this).next('dd').toggle('medium').find('p:first').css('display', 'inline');
	}).css('cursor', 'pointer').prepend('Q: ').attr('title', 'Click to reveal the answer to this question.');
  jQuery('#faqInstructions').append('<p>Click on the questions below to reveal the answers.</p>');
  });
