/**
 * Javascript File
 * Component: BestArticles
 * 
 * @author Jan Byška <www.svofrcomputers.cz>
 * @copyright All right reserved
 * @version 1.1 
 */
function show(what){
	$('#day').removeClass("selected").addClass("not-selected");
	$('#three').removeClass("selected").addClass("not-selected");
	$('#week').removeClass("selected").addClass("not-selected");
	
	$('#'+what).removeClass("not-selected").addClass("selected");
	
	$('#day_articles').hide();
	$('#three_articles').hide();
	$('#week_articles').hide();
	
	$('#'+what+'_articles').show();
}
