function showComments()
{
	$('popularPosts').hide();
	$('recentComments').show();
	$('postsTab').removeClassName("active");
	$('commentsTab').addClassName("active");
}

function showPosts()
{
	$('recentComments').hide();
	$('popularPosts').show();
	$('commentsTab').removeClassName("active");
	$('postsTab').addClassName("active");	
}



