$.fn.articleRotator = function() {
	// Hides all articles but the first one:
	$(this).find('.article-abstract:gt(0)').hide();
	
	var html = '<ul class="article-rotator">';
	
	$(this).find('.article-abstract').each(function(idx)
		{
			html += '<li idx="' + idx + '"><img src="' + $(this).find('img').attr('src') + '" width="56" height="43" />';
		}
	);
	
	html += '</ul>';
	
	// Append the HTML below the rotator:
	$(this).find('.article-abstract:last').after(html);
	
	// Set the first one as active:
	$(this).find('ul.article-rotator li:first').addClass('active');
	
	// Activate the hover on the rotator:
	$(this).find('ul.article-rotator li').mouseover(function(){
	
		$('ul.article-rotator li').removeClass('active');
		$(this).addClass('active');
		
		$('.article-abstract:not(:eq(' + $(this).attr('idx') + '))').hide();
		$('.article-abstract:eq(' + $(this).attr('idx') + ')').show();
	
	});
}