/*
 *  Loads all of the feeds for Coulter Adams Strategic Investments
 */

function LoadDynamicFeedControl() {
  var feeds = [
		{title: 'Commercial Real Estate Loans',
		 url: 'http://blog.c-loans.com/public/rss/126623'
		},
		{title: 'Net Gain Real Estate',
		 url: 'http://www.netgainrealestate.com/feed/atom/'},
		{title: 'Tenant Representation',
		 url: 'http://tenantrepresentation.wordpress.com/feed/'
		}];
  var options = {
		linkTarget : google.feeds.LINK_TARGET_BLANK,
		pauseOnHover : false,
		stacked : true
		
  }
  new GFdynamicFeedControl(feeds, 'feed-control', options);
}