<?php if ($this->customException) { ?>
	<div id="content">
	<div id="bread"><a href="/"><?=$this->translate->_("Home")?></a> &gt; <a href="/analytics/index"><?=$this->translate->_("analytics")?></a> &gt; <span class="active"><?=strtolower($this->translate->_("error"))?></span></div>
	<h1>Error</h1>
	<p><?php echo $this->error_message; ?></p>
	</div>
<?php } else { ?>
	<div id="content">
	<h1>We're sorry, an error has occurred.</h1>
	<p>
		<?php if ($this->message) { 
			echo $this->message.',';
		 } ?>
		
		<?php if ($this->additional_info) {
			echo $this->additional_info; ?>
		<?php } ?>
		</p>
		<? if (APPLICATION_ENV != 'production') { ?>
		<br />
		<?php if ($this->error) { ?>
			<h3>Exception information:</h3><br />
			<pre><?php print_r($this->error); ?></pre>
		<?php } ?>
	<?php } ?>
	</div>
<?php } ?>