// ==UserScript==
// @name           Connolicious
// @namespace      http://alf.hubmed.org
// @description    Link from Connotea tags to del.icio.us
// @include        http://www.connotea.org/tag/*
// @include        http://connotea.org/tag/*
// ==/UserScript==

var tag = location.href.match(/tag\/(.+)/);
if (tag){
	var a = document.createElement('a');
	a.setAttribute('class', 'nav');
	a.href = 'http://del.icio.us/tag/' + tag[1];
	a.innerHTML = 'del.icio.us';
	var menu = document.getElementById('horizontal-menu');
	menu.appendChild(document.createTextNode(' | '));
	menu.appendChild(a);
}
