function getFluxContentAction(which){
	Flux.createWidget('ContentAction', {
		contentUri: 'mgid:cms:item:colbertnation.com:' + which,
	  	layout: 'vertical',
		size: 'small',
	  	items: [
			{ title: 'Comments', id: 'commentCount'},
	  		{ id: 'contentRating', title: { thumbsUpTitle: 'Thumbs Up', thumbsDownTitle: 'Thumbs Down' } },
		    { id: 'rate', title: 'Rate it'}
		]
	});
}

function getFluxComments(which){
 	Flux.createWidget('Comments', {
        contentUri: 'mgid:cms:item:colbertnation.com:' + which,
        title:'Comment',
        pageSize:20,
        disableProfileLinks:false,
        showPaging:true
    });
}

function fixExpandibleAd() {
	if (jQuery) {
		var leaderboardAd = $("#leaderboard div:first-child div:firstchild");
		if (leaderboardAd && leaderboardAd.css("z-index") > 99) {
			leaderboardAd.css("z-index", "99");
		}
	}
	
}

