var Proyecto = new Class({
	initialize : function(nombre, descripcion, cant_imagenes, nueva_linea) {
		this.cant_imagenes = cant_imagenes;
		this.nombre = nombre;
		this.descripcion = descripcion;
		this.nueva_linea = nueva_linea;
	}
});
