// ==UserScript==
// @namespace http://nathanpowell.org
// @name Skip Digg Comments
// @description Digg users are lamerz
// @include http://digg.com/*
// ==/UserScript==

function getRealUrl() {
  var foo = document.getElementById("title");
  window.location = foo.childNodes[0];

}

getRealUrl();

