// ==UserScript==
// @name          shuffle links
// @namespace     http://blog.fkoji.com/
// @description	  we wanna shuffle
// @include       http://*
// ==/UserScript==

(function() {
 var a = document.getElementsByTagName("a");
 for (i = 0; i < a.length; i++) {
  var j = Math.floor(Math.random() * a.length);
  var k = Math.floor(Math.random() * a.length);
  var tmp = a[j].href;
  a[j].href = a[k].href;
  a[k].href = tmp;
 }
})();

