$(document).ready(function() {
	$('div.students-list-item-full').hide();
	$('div.students-list-item-short .col-1 a').click(function()
		{
			// $(this).parents('div.students-list-item').children('.students-list-item-full').slideDown('fast');
			// nParent = $(this).parents('div.students-list-item');
			nParent = $(this).parent().parent().parent();
			nParent.children('.students-list-item-short').hide();
			nParent.children('.students-list-item-full').show();
			return false;
		}
	);
	$('.students-list-item-full-name a').click(function()
		{
			// $(this).parents('div.students-list-item').children('.students-list-item-full').slideDown('fast');
			// nParent = $(this).parents('div.students-list-item');
			nParent = $(this).parent().parent().parent();
			nParent.children('.students-list-item-full').hide();
			nParent.children('.students-list-item-short').show();
			return false;
		}
	);

});