Array.prototype.contains = function(value) { for(var i in this) { if( this.hasOwnProperty(i) && this[i] === value) { return true; } } return false; } ]]>
Array.prototype.contains = function(value) { for(var i in this) { if( this.hasOwnProperty(i) && this[i] === value) { return true; } } return false; } ]]>