
function prepare_comment_form() {
 media = '../../media';
 $('div.comment-form form').submit(function() {
   ajaxComment({'media': media});
   return false;
  });
 if(default_comment_url != '') {
  $('#id_url').val(default_comment_url);
  $('#form_field_url').hide();
 }
}

$(document).ready(function() {
  prepare_comment_form();
 });

