$(function() {
	$('a.thickbox').hover(function() {
		$(this).append('<span></span>');
		var hr = $(this).attr('href');
		$('a.thickbox span').attr('href', hr);
		$('a.thickbox span').css( { 'opacity':0 } );
		$('a.thickbox span').fadeTo('fast', 0.5);
	}, function() {
		$('a.thickbox span').fadeTo('fast', 0, function() {
			$(this).remove();
		});
	});
});