<?php
	/**
	* File not found.
	* 
	* Try the other site
	* 
	*/
	class Page extends Controller
	{
		function __construct()
		{
			parent::controller();
			$this->output->set_status_header('404');
			$this->output->set_output('Try the other site.');
		}
	}