var oNoticeboardBuilder = new noticeboardBuilder();

function noticeboardBuilder(){
  //properties
  this.currentZIndex;
  //methods
  this.bringToFront = bringToFront;
}

function bringToFront(oImg){
  this.currentZIndex++;
  oImg.style.zIndex = this.currentZIndex;
}

