public ScrobbleManager(Connection connection, string cacheDir)
		{
			Connection = connection;
			
			CacheDir = cacheDir;
			
			init();
		}
		public ScrobbleManager(Connection connection)
		{
			Connection = connection;
			
			// Set the default value for the CacheDir and cacheFileName
			CacheDir = Environment.GetFolderPath(Environment.SpecialFolder.Personal) + 
			                 "/.lastfm-sharp/" + Connection.ClientID + "/";
			
			init();
		}