$(function() {

	$('a#topclan').click(function() {		
		$('#kings_content,#castle_content').hide();
		$('#topclan_content,.select_world,.drop_arrow').show();
		$('#tab1').removeClass('tab_off').addClass('tab_on');
		$('#tab2,#tab3').removeClass('tab_on').addClass('tab_off');
	});

	$('a#kings').click(function() {
		$('#topclan_content,#castle_content,.select_world,#selectWorld_content,.drop_arrow').hide();
		$('#kings_content').show();
		$('#tab2').removeClass('tab_off').addClass('tab_on');
		$('#tab1,#tab3').removeClass('tab_on').addClass('tab_off');
	});

	$('a#castle').click(function() {
		$('#topclan_content,#kings_content,.select_world,#selectWorld_content,.drop_arrow').hide();
		$('#castle_content').show();
		$('#tab3').removeClass('tab_off').addClass('tab_on');
		$('#tab1,#tab2').removeClass('tab_on').addClass('tab_off');
	});

	$('a#sel_world').click(function() {
		$('#selectWorld_content').fadeIn('slow');
	});
	
	$('a#popclose').click(function() {
		$('#selectWorld_content').fadeOut('slow');	
	});

});
