var oTweet;
function showTwitterFeed() {
    oTweet = new TWTR.Widget({
        version: 2,
        type: 'profile',
        rpp: 2,
        interval: 30000,
        width: 225,
        height: 300,
        theme: {
            shell: {
                background: '#cbf6fc',
                color: '#333333'
            },
            tweets: {
                background: '#ffffff',
                color: '#333333',
                links: '#eb7126'
            }
        },
        features: {
            scrollbar: false,
            loop: false,
            live: false,
            hashtags: true,
            timestamp: false,
            avatars: false,
            behavior: 'all'
        }
    });
	
	jQuery(document).ready(function() {
		oTweet.render().setUser('CU_Community').start();
	});
}
