function Item (uri, href, title, isInternal, factor, delay)
{
 this.uri        = uri       ;
 this.href       = href      ;
 this.title      = title     ;
 this.isInternal = isInternal;
 this.factor     = factor    ;
 this.delay      = delay     ;
 this.laps       = 0         ;
 this.emptyLaps  = null      ;
 
 this.getUri        = getUri       ;
 this.getHref       = getHref      ;
 this.getTitle      = getTitle     ;
 this.getIsInternal = getIsInternal;
 this.getFactor     = getFactor    ;
 this.getDelay      = getDelay     ;
 this.getEmptyLaps  = getEmptyLaps ;
 this.setEmptyLaps  = setEmptyLaps ;
 this.getLaps       = getLaps      ;
 this.setLaps       = setLaps      ;
 this.increaseLaps  = increaseLaps ;
  
 function getUri ()
 {
  return this.uri;
 }
  
 function getHref ()
 {
  return this.href;
 }
  
 function getTitle ()
 {
  return this.title;
 }
  
 function getIsInternal ()
 {
  return this.isInternal;
 }
  
 function getFactor ()
 {
  return this.factor;
 }
  
 function getDelay ()
 {
  return this.delay;
 }
  
 function getEmptyLaps ()
 {
  return this.emptyLaps;
 }
  
 function setEmptyLaps (value)
 {
  this.emptyLaps = value;
 }
  
 function getLaps ()
 {
  return this.laps;
 }
  
 function setLaps (value)
 {
  this.laps = value;
 }
  
 function increaseLaps ()
 {
  this.laps++;
 }
}

readyItem = true;
