function isDevelopment() {
		if (!isSet($_SERVER['HTTP_HOST'])) return false;
		
		return substr($_SERVER['HTTP_HOST'], 0, strlen($this->developmentHost)) == $this->developmentHost;
	}