$(document).ready(
	function() {
		$('#user-profile').hide();
		
		$('#user-profile-link').bind('click',
			function(e) {
				$('.widget.profile .profile_info').hide();
				$('#user-profile').show();
				$('.widget.profile .option_links a').removeClass('current');
				$(this).addClass('current');
				return false;
			}
		);
		
		$('#user-stats-link').bind('click',
			function(e) {
				$('.widget.profile .profile_info').hide();
				$('#user-stats').show();
				$('.widget.profile .option_links a').removeClass('current');
				$(this).addClass('current');
				return false;
			}
		);
		
		$('.widget.badges .badge-list .badge-details').toggle();
		$('.widget.badges .badge-list a.details-link').bind('click',
			function(e) {
				$(this).parent().find('.badge-details').toggle();
			}
		);
	}
);