function showtopgames(){
	$('topgames-list').toggle();
	$('stats-list').hide();
	$('rubrics-list').hide();
	$('topplayers-list').hide();
	$('newgames-list').hide();
}

function showtopplayers(){
	$('topgames-list').hide();
	$('stats-list').hide();
	$('rubrics-list').hide();
	$('topplayers-list').toggle();
	$('newgames-list').hide();
}

function shownewgames(){
	$('topgames-list').hide();
	$('stats-list').hide();
	$('rubrics-list').hide();
	$('topplayers-list').hide();
	$('newgames-list').toggle();
}

function showstatistics(){
	$('topgames-list').hide();
	$('stats-list').toggle();
	$('rubrics-list').hide();
	$('topplayers-list').hide();
	$('newgames-list').hide();
}
function showrubrics(){
	$('topgames-list').hide();
	$('stats-list').hide();
	$('rubrics-list').toggle();
	$('topplayers-list').hide();
	$('newgames-list').hide();
}

function showsendfriend(){
	$('tellafriend').toggle();
	$('addreview').hide();
}

function showreview(){
	$('addreview').toggle();
	$('tellafriend').hide();
}

function showtools(){
	$('tools').toggle();
	$('topgames-list').hide();
	$('stats-list').hide();
	$('rubrics-list').hide();
	$('topplayers-list').hide();
	$('newgames-list').hide();
}