$(document).ready(function(){
	$('#tab div').hide();
	$('#tab div:first').show();
	$('#tab a:first').addClass('active');
	
	$('#tab #top_stories_a').click(function(){
		$('#tab a').removeClass('active');
		$(this).addClass('active');
		var active_tab = $(this).attr('href');
		$('#tab div').hide();
		$(active_tab).fadeIn();
		return false;
	});
	
	$('#tab #top_tips_a').click(function(){
		$('#tab a').removeClass('active');
		$(this).addClass('active');
		var active_tab = $(this).attr('href');
		$('#tab div').hide();
		$(active_tab).fadeIn();
		return false;
	});
	
	$('#tab #top_downloads_a').click(function(){
		$('#tab a').removeClass('active');
		$(this).addClass('active');
		var active_tab = $(this).attr('href');
		$('#tab div').hide();
		$(active_tab).fadeIn();
		return false;
	});
});
