i'm trying out this jquery plugin http://plugins.jquery.com/project/stylish-select-box/
it works good but with prototype + jquery in noConflict mode this function broke others scripts
Array.prototype.indexOf = function (obj, start) {
for (var i = (start || 0); i < this.length; i++) {
if (this[i] == obj) {
return i;
}
}
};
any help?