public static function show($id)
 {
     $hero = Hero::find($id);
     $drafts = Yhteys::findDraft($id);
     View::make('hero/show.html', array('hero' => $hero, 'drafts' => $drafts));
 }