function feed_min(inserturl, showamount){			  

	var $Output = $("#feedoutput");
	$Output.hide();	

/* 
	Send the data to the php file 
	FeedType is either 'min' or 'max' depending on wich feed you want to show.
	Multi is either set or or not depending on how many feeds there are.		
*/
		
	$.ajax({		   
		type: "POST",
		url: inserturl,
		dataType: "html",						   					   
		data: {
				feedType:		'min',
				rssfeed:		$rssfeedall,			
				show:			showamount
			},
		success: function(html){
			$("#loading2").fadeOut("fast");
				$Output.append(html);								
				$Output.fadeIn("slow");
				}
	});
}