public static function show($id)
 {
     $tuote = Tuote::find($id);
     $tuoteryhmät = Tuote::getTuoteryhmat($id);
     View::make('tuote/show.html', array('tuote' => $tuote, 'tuoteryhmat' => $tuoteryhmät));
 }