// Array.prototype Enhancements

Array.prototype.contains = function(searchValue)
{
for (var i = 0, len = this.length;
i < len && this[i] !== searchValue;
i++);
return i < len;
}
