public function filterStartup()
 {
     $this->user = new Fari_AuthenticatorSimple();
     if (!$this->user->isAuthenticated()) {
         $this->redirectTo('/login/');
     }
     $this->albums = new Albums();
 }