/**
	 * Returns the singleton instance
	 * 
	 * @return WPRSS_FTP_Settings
	 */
	public static function get_instance() {
		if ( self::$instance === NULL ) {
			self::$instance = new self();
		}
		return self::$instance;
	}