function test() {
  alert('call from toybox');
}

function insertToPostTitle(before, text) {
  $('.post-title > a').each(function() {
    var originalContents = $(this).html();
    if(before) {
      $(this).html(text + originalContents);
    } else {
      $(this).html(originalContents + text);
    }    
  }); 
}

function ajaxGet(source, targetDiv) {
  $.get(source, function(data){
    $(targetDiv).html(data);
  });
}

