$(function(){
	$('#students-article img:not(:first)').hide();
	var i = 0;

	$('.nav .prev').click(function(){
		$('#students-article img').hide();
		if(--i < 0) i = i + $('#students-article img').length;
		$('#students-article img:eq('+i+')').show();
	});

	$('.nav .next').click(function(){
		$('#students-article img').hide();
		i = ++i % $('#students-article img').length;
		$('#students-article img:eq('+i+')').show();
	});
});