$(document).ready(function() {
	
	// Start by hiding top 25
	$(".topextfull").hide();
	$(".hide").hide();
	
	// show top 25
	$(".show").click(function(event){
		event.preventDefault();
		$(".topextfull").show("fast");
		$(".show").hide();
		$(".hide").show("fast");
	});

	// show top 10
	$(".hide").click(function(event){
		event.preventDefault();
		$(".topextfull").hide();
		$(".show").show();
		$(".hide").hide();
	});

});
