$(document).ready(function() {
	$('a.more').click(function() {
		$('tr.more').toggle();
	});
});

