//-- //-- Augmented methods for the JavaScript Array() object //-- // Add indexOf function if browser does not support it if(!Array.indexOf) { Array.prototype.indexOf = function(item,from) { if(!from) from = 0; var i; for(i=from; i