function initialize() {
  // logger
  window.log = function(){
    log.history = log.history || [];
    log.history.push(arguments);
    window.console && console.log[console.firebug ? 'apply' : 'call'](console, Array.prototype.slice.call(arguments));
  }

  window.logargs = function(context){
    log(context,arguments.callee.caller.arguments); 
  }
}

$(document).ready(function () {
  
  $(".no_js").css("display", "block");

  $.getJSON("http://autresgrp.tumblr.com/api/read/json?callback=?", 
  function(data) { 
    $('#latest_blog_posting').html(data.posts[0]["regular-title"]);
  }); 

});
