Event.observe(document, 'dom:loaded', function(){
  $$('#have_your_say a').each(function(elm){
    
    elm.observe('click',function(e){
      e.stop();
      // populate the feedback field for them
    	$('feedback_question').value='I have a suggestion for the get advice section:';

    	// show the feedback form
    	feedbackToggle();
    });
    
  });
});