(function($) {

$(function() {
	$('a.legal-jump')
		.bind('click', function(e) {
			$('#legal')
				.toggle();
		});
});
	
	
})(jQuery);