$(document).ready(function(){
						   
	$(".toppanel").corner("tr, tl 5px");
	
	$(".mainclubs:first").show();
	
	$(".png span").click(function(){
		$("DIV.mainclubs").hide();
		var ppng = $(this).attr('class');
		$(".mainclubs").filter(function () {
			return $(this).attr("id") == ppng;
		}).show();
	});
	
});
