/*
 * Requires: jquery, profile.js, phones.js, address.js, section.js
 */
var Users = {};

function User(id, name, edit) {
	this.name = name;
	this.id = id;
	this.edit = edit;
}
User.prototype = {
	info: function() {
		var self = this;
		if (this.edit) {
			Profiles[this.getId()] = this;
			Emails[this.getId()] = new Email(this.getId());
		}
	},

	
	__tmp: null
};
User.prototype = jQuery.extend(User.prototype, Profile.prototype);