//Blogofile should use $j for jQuery, not jQuery as that might be used by sphinx (if loaded)
var $j = jQuery;

function twitterSidebar(){
  $j("#clarkbyron_tweets").tweet({
    username: "clarkbyron",
    count: 5
  });
}

$j(document).ready(function(){
    twitterSidebar();
  });

