$( document ).ready( function(){		

	// Find mini date icons for the quicklists and change the folder for the month and day icons
	
	// find each month
	$('.bit.feed .hangDate h5.hangMonth').each(function(){
		// get the background image file 
		var monthstr = $(this).css('background-image');
	
		// replace the folder name
		monthstr = monthstr.replace("images/dates","images/dates-small");
		
		// set the new background image file (in the new folder)
		$(this).css('background-image',monthstr);	
	});
	
	// find each day
	$('.bit.feed .hangDate h5.hangDay').each(function(){
		// get the background image file 
		var daystr = $(this).css('background-image');
	
		// replace the folder name
		daystr = daystr.replace("images/dates","images/dates-small");
		
		// set the new background image file (in the new folder)
		$(this).css('background-image',daystr);	
	});
	
	
});
