/**
* Load the most recent blog post into the Social area.
*
* @require jquery.js
* @author Ben Barber (bbarber@i2rd.com)
*/
jQuery(function($){
  $('#blog_recent_post').load('/ajax/blog_posts #recent_posts li:first .title a', function(){
    $(this).find('a').addClass('arrow');
  });
});

