Array.prototype.shuffle=function(){for(i=0;i<this.length;i++){var b=this[i];var a=parseInt(Math.random()*this.length);this[i]=this[a];this[a]=b}};
