HTML низ

Код:
<script><!-- Cсылка на пост при клике на дату -->
  $(document).ready(function(){
    $(' a.permalink ').attr("href", function () {
          return "javascript:hrefPost('" + $(this).attr("href")+"','"+$(this).prev('strong').text()+"')";
        })
    $('a.permalink ').append(' <img class="postssyll" src=" " /><font color="#000"> <u>Получить ссылку</u></font>');
  });
function hrefPost(href,numPost)
{
	insert('[url]' + href + '[/url]' + ',[b] пост №[/b]'+numPost+'\n');
}
</script>