$(function() {
	//contributors
	var nx = 0;
	$('#panel-right #contributorslist').children('li').each(function() {
		nx++;
		if(nx > 5) {
			$(this).hide();
		}
	});
});
