var create_toc = function () {
  var toc = $('<ul>').attr('id', 'toc').append(
    $('<li>').append(
      $('<strong>').text('Περιεχόμενα')
    )
  );

  $('h3').each(function () {
    var text = $(this).text();
    var href = '#' + text.replace(' ', '+');

    toc.append(
      $('<li>').append(
        $('<a>').attr('href', href).text(text)
      )
    );

    $(this).append(
      $('<a>').addClass('pilcrow').attr('href', href).text('#link')
    );
  });

  $('h2').after(
    $('<div>').attr('id', 'toc_container').append(
      toc
    )
  );
};

