public static function Singleton() {
		if (is_null(self::$Instance)) self::$Instance = new self();
		return self::$Instance;
	}