jQuery(function($) {
	
	$('a.copyLink').click(function(e) {
		e.preventDefault();
		
		$(this).after('<input type="text" size="45" id="CopyLinkInput" name="copy-link" value="'+$(this).attr('href')+'">').hide();
		$('#CopyLinkInput').select().bind('blur',function() {
			$(this).prev('a').show();
			$(this).remove();
		});
		// $(this).hide();
		
	});
	
	// do fancy tag rollovers
	$('span.tag').bind('mouseenter', function() {
		$(this).addClass('tag-active');
	});
	$('span.tag').bind('mouseleave', function() {
		$(this).removeClass('tag-active');
	});

});

