/**
  * manipulates the Breadcrumbs
  *
  * @param int  $maxDepth       maximum levels
  * @param bool $unlinked       link breadcrumbs elements
  * @param bool $stopAtPageType name of PageType to stop at
  * @param bool $showHidden     show pages that will not show in menus
  *
  * @return string
  *
  * @author Sebastian Diel <*****@*****.**>
  * @since 22.02.2011
  */
 public function Breadcrumbs($maxDepth = 20, $unlinked = false, $stopAtPageType = false, $showHidden = false)
 {
     return parent::Breadcrumbs($maxDepth, $unlinked, 'SilvercartFrontPage', true);
 }