/*
	public implement Shuffle
	@by Javier Onglao
	@December 28, 2009
	
	Shuffles targeted arrays.
	
	Usage: <array<.shuffle();
*/
Array.implement({
	shuffle: function() {
		this.sort(function () { return Math.floor(Math.random()*3)-1; });
		return this;
	}
});