// Custom js 

$(function(){
	var items = $('.feedpost dd')
	
	items.hide();
	
	items.eq(0).show();
	
		
	var timer = setInterval( showImg, 5000);
	var counter = 0;		
	function showImg() {			
		items.fadeOut(2000).eq(counter).fadeIn(3000);			
		counter++;				
		if(counter==items.size()){
			counter=0;	
		}
	}
	
	
	

});
