/* ### top-10 block ### */
var last_top10_period_requested = 'day';
var block_top10_cached = [];

function switch_top10(period) {
	if (typeof(jQuery)!=='function')
		return;
	if (period!=='week')
		period='day';
	if (last_top10_period_requested == period)
		return;
	last_top10_period_requested = period;
	if (block_top10_cached[period]) {
		switch_top10_display(period);
		return;
	}
	show_loadingbox();
	jQuery.ajax({
		type: "GET",
		url: "/ajax/get_top10/?period="+period,
		success: function(response) {
			hide_loadingbox();
			block_top10_cached[period] = response;
			switch_top10_display(period);
		}
	});
}

function switch_top10_display(period) {
	if (typeof(jQuery)!=='function')
		return;
	jQuery('#bl_top').html(block_top10_cached[period]);
	if (period=='week') {
		jQuery('#topswitchday').html("<a href=\"javascript:void(0);\" onclick=\"switch_top10('day'); return false;\">За сегодня</a>");
		jQuery('#topswitchweek').html("За неделю");
		jQuery('#topswitchbox').addClass('top_b').removeClass('top_a');
	} else {
		jQuery('#topswitchday').html("За сегодня")
		jQuery('#topswitchweek').html("<a href=\"javascript:void(0);\" onclick=\"switch_top10('week'); return false;\">За неделю</a>");
		jQuery('#topswitchbox').addClass('top_a').removeClass('top_b');
	}
}
