
//|
//|  FBArray methods that we expect js arrays to have can be implemented here
//|

if ( ! Array.prototype.contains )
{
  Array.prototype.contains = function(v)
  {
    for (i = 0; i < this.length; i++)
    {
      if ( this[i] === v )  return true;
    }
    
    return false;
  }
}
