function shuffleSort(a, b){
	if (a.peso && b.peso)
		return b.peso * Math.random() - a.peso * Math.random();
	else
		return 1 - Math.random() * 2;
}