public function answers($reload = false)
 {
     if ($reload or !$this->answers_cache) {
         $id = mysql_real_escape_string($this->id);
         $this->answers_cache = SurveyAnswer::find_all("survey_questions.id = '{$id}'");
     }
     return $this->answers_cache;
 }