$(document).ready(function(){
	$("#getToKnow .fans ul li").each(function(index){
		if(index%3==2) $(this).addClass("fix");
	});
	
	
});

