public TrackedDocument (ZeitgeistClient _client, Document doc)
		{
			client = _client;

			doc.Closed += HandleDocClosed;
			doc.Saved += HandleDocSaved;
			Document = doc;
			FilePath = new FilePath (doc.FileName);
		}
		public StartupHandler ()
		{
			client = new ZeitgeistClient ();
		}