/**
 * class Project
 *
 */
function Project() {

  // attributes  
  this.id = '';
  this.infoText = '';
  this.color1Bg = '';
  this.color1Fg = '#FFFFFF';
  this.color2Bg = '';
  this.color2Fg = '#FFFFFF';
  this.plink = '';
  
  // methods
  this.getLink = getLink;
  
}


function getLink() {

  return this.id.toLowerCase();

}




/**
 * class ProjectList
 *
 */
function ProjectList() {
  // attributes
  this.projects = new Array();
  this.baseLink = '';
  
  // methods
  this.add = add;
  this.get = get;
  

}

function add( projectObject ) {

  this.projects[projectObject.id] = projectObject;

}


function get( projectId ) {

  return this.projects[projectId];

}


