/*
 * Requires: jquery, profile.js
 */
var Documents = {};

function Document(id, name, edit) {
	this.name = name;
	this.id = id;
	this.edit = edit;
}
Document.prototype = {
	info: function() {
		var self = this;
		Profiles[this.getId()] = this;
	}
};
Document.prototype = jQuery.extend(Document.prototype, Profile.prototype);