// ==UserScript==
// @name          Google Paginate At Top
// @namespace     http://www.arantius.com/misc/greasemonkey/
// @description	  Put the pagination links on top as well as on bottom of search results.
// @include       http://www.google.com/search*
// ==/UserScript==

(function(){
var ds=document.getElementsByTagName('div');
var d=ds[1].cloneNode(true);
ds[0].parentNode.insertBefore(d, ds[0]);
})();