$(function () {
	var tabContainers = $('#top_females,#top_males');
	tabContainers.hide().filter(':first').show();
	$('#top_females_link, #top_males_link').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('#top_females_link, #top_males_link').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
});

