
function LoadDynamicFeedControl() {
var feeds = [
{title: 'Current Opportunities',
url: 'http://feeds.feedburner.com/MindPharmJobs'
}];
var options = {
stacked : false,
horizontal : false,
numResults: 6,
title : "<a href='http://mindpharm.net/blog/index.php?catid=3&blogid=1'>Current Opportunities</a>"
}
new GFdynamicFeedControl(feeds, 'feed-control', options);
}
// Load the feeds API and set the onload callback.
google.load('feeds', '1');
google.setOnLoadCallback(LoadDynamicFeedControl);

