$().ready(function() {
	$('#people .list table tr').click(function(event) {
		event.preventDefault();
		document.location = $(this).find('a').attr('href');
	});
});
