if(!Array.prototype.indexOf) { Array.prototype.indexOf = function(el) { var i = 0; for(; i < this.length; i++) if(this[i] == el) return i; return -1; }; }
if(!Array.prototype.indexOf) { Array.prototype.indexOf = function(el) { var i = 0; for(; i < this.length; i++) if(this[i] == el) return i; return -1; }; }