function MenuContents(){
  // define properties 
  this.docs = new String();
  this.support = new String();
  // attach methods
  this.addToDocs = MenuContents_addToDocs;
  this.getDocs = MenuContents_getDocs;
  this.addToSupport = MenuContents_addToSupport;
  this.getSupport = MenuContents_getSupport;
}
function MenuContents_addToDocs(content){
	this.docs += content;
}
function MenuContents_getDocs(){
	return this.docs;
}
function MenuContents_addToSupport(content){
	this.support += content;
}
function MenuContents_getSupport(){
	return this.support;
}

