protected function loadPage()
 {
     if (!isset($this->settings['header']['ga_options']['_setAccount'])) {
         $this->settings['header']['ga_options']['_setAccount'] = Config::get('GoogleAnalyticsID');
     }
     // automatically prepend same text to all headers
     if (isset($this->settings['header']['title']) && $this->settings['header']['title']) {
         $this->settings['header']['title'] = 'Passing Green :: ' . $this->settings['header']['title'];
     }
     if (isset($this->settings['breadcrumb'])) {
         $this->settings['header']['breadcrumb'] = $this->settings['breadcrumb'];
     }
     parent::loadPage();
 }