$( function() {
	$( ".level" ).click( function() {
		$.post( $( this ).attr( "href" ), {}, function( data ) {
			location.href = location.href;
		} );
		return false;
	} );
} );