diff --git a/public_html/media/js/core.js b/public_html/media/js/core.js
index ca0d5c90..7390755a 100644
--- a/public_html/media/js/core.js
+++ b/public_html/media/js/core.js
@@ -292,7 +292,7 @@ function attachTagIt(target)
$.each(data.tags.slice(0, 10), function(i, tag)
{
var link = $('');
- link.attr('href', '#');
+ link.attr('href', '/posts/' + tag.name + '/');
link.text('#' + tag.name);
link.click(function(e)
{
@@ -310,6 +310,7 @@ function attachTagIt(target)
div.addClass('related-tags');
div.append('Related tags:
');
div.append(list);
+ div.append('');
div.insertAfter(targetTagit).hide().slideDown();
});
},