function getFeed(twiturl, blogurl, count, appendDIV, nextDIV, prevDIV, scroll, coming_from_home){
	
	var trun = (appendDIV == 'divFeed' && MAD.currentPage == 'chatter') ? 1 : 0;
	var chatter_twitter = (appendDIV == 'divTwitter' && MAD.currentPage == 'chatter') ? true : false;
	var just_follow_us = (chatter_twitter && MAD.options.displayJustFollowUs) ? 1 : 0;
	var $appendDiv = $("#"+appendDIV);
	var home = (coming_from_home) ? 1 : 0;
	
	$.ajax({
		type: "POST",
		url: "rss.php",
		cache: true,
		data: "&twiturl=" + twiturl + "&blogurl=" + blogurl + "&count=" + count + "&trun=" + trun + "&just_follow_us=" + just_follow_us + "&coming_from_home=" + home,
		success: function(html){
		
			$appendDiv.html(html);
			
			if(nextDIV != undefined && prevDIV != undefined){
				
				var default_opts = {
			    	fx:     'scrollHorz',
					timeout: 0,
					next: '#'+nextDIV,
					prev: '#'+prevDIV
			    };
			    
			    var opts = $.extend({}, default_opts, (just_follow_us) ? { height: 300, fit: true } : {});
			    //console.log(opts);
			    $appendDiv.cycle(opts);
			    
			}
			if(scroll){
				
				if($.trim($appendDiv.html()) != ''){
					$appendDiv.jScrollPane();
				}

			}
			
		}
	});	
	
}