// ==UserScript==
// @name           No Google click tracking
// @namespace      strictlyPHP
// @description    Removes the annoying URL change in the Google SERPs when you (right-)click a link (to copy it)
// @include        http://*.google.*/*
// @require        http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// ==/UserScript==

$(document).ready(function() {
	$('h3.r>a.l').mousedown(function() {
		var link = $(this).attr('href');
		if (link.indexOf('/url') >= 0) {
			var start = link.indexOf('url=') + 4;
			var stop = link.indexOf('&ei=') - start;
			var original = unescape(link.substr(start, stop));
			$(this).attr('href', original);
		}
	});
});