google.setOnLoadCallback(function() {
  $(function() {
      $.getJSON('http://digitaloakpark.blogspot.com/feeds/posts/default?alt=json&callback=?',function(data) {
        $('#posts').html(tmpl('blogpost_tmpl',{ myfeed: data.feed}));
      });
  });
});


