// jQuery Detector
// version 0.1
// 2007-02-09
// Copyright (c) 2007, Paul Bakaus
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
// 2008-07-30, pyrolupus: changed URL to a suped up version
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name           jQuery Detector
// @namespace      http://www.paulbakaus.com/
// @description    Shows whether the page is powered by jQuery.
// @include        *
// ==/UserScript==

if(document.getElementsByTagName('head')[0]) {
	var n = document.createElement('script');
	//n.src = 'http://paul.jquery.com/jquerydetector.js';
	n.src = 'http://pyrolupus.com/js/jqd.js';
	document.getElementsByTagName('head')[0].appendChild(n);
}