﻿function LoadDynamicFeedControl1() {
    var feeds = [
	{ title: 'Refined Products',
	    url: 'http://feeds.feedburner.com/CMEGroup/UdDK'
	}];
    var options = {
        stacked: false,
        horizontal: false,
        numResults: 10,
        scrollOnFadeOut: true,
        title: ""
    }

    new GFdynamicFeedControl(feeds, 'feed-control1', options);
}

function LoadDynamicFeedControl2() {
    var feeds = [
	{ title: 'Ethanol',
	    url: 'http://feeds.feedburner.com/CMEGroup/RzAF'
	}];
    var options = {
        stacked: false,
        horizontal: false,
        numResults: 10,
        scrollOnFadeOut: true,
        title: ""
    }

    new GFdynamicFeedControl(feeds, 'feed-control2', options);
}

