function LoadDynamicFeedControl() {
  var feeds = [
{title: 'HCJ Project',
 url: 'http://feeds2.feedburner.com/HandmadeContemporaryJewellery-All-Articles'
}];
  var options = {
    numResults : 8,
    stacked : false,
    horizontal : false,
    title : ""
  }

  new GFdynamicFeedControl(feeds, 'feed-control', options);
}
// Load the feeds API and set the onload callback.
google.load('feeds', '1');
google.setOnLoadCallback(LoadDynamicFeedControl);

