// Plugins homepage

$(document).ready(function(){
	// Rotator
	$('#tabs li a').featureList({
		output			:	'#output li',
		start_item		:	0
	});
	
	// Add break after first word in tabs
	$("#tabs li a").each(function() {
		var html = $(this).html().split(" ");
		html = html[0] + "<br>" + html.slice(1).join(" ");
		$(this).html(html);
	});
	
	// Display the rotator when document is ready
	$('#feature_list ul').css('display','block');
	
	// Articles with different colors
	$('.home .ArticlesGalleryContainer:eq(0)').addClass('article-red');
	$('.home .ArticlesGalleryContainer:eq(1)').addClass('article-green');
	$('.home .ArticlesGalleryContainer:eq(2)').addClass('article-blue');
	$('.home .ArticlesGalleryContainer:eq(3)').addClass('article-gray');
});
