function popularpingFlipPage(timeframe)
{
	var pars = 'timeframe=' + timeframe;
	new Ajax.Updater('popularboxcontainer', 'mainpopularpings.php', 
	{
		method: 'get', 
		parameters: pars, 
		onLoading:function(request){ Element.show('popularpingLoader'); }, 
		onComplete:function(request){ Element.hide('popularpingLoader'); }
	});
	return false;
}

var popularpingloader = new PeriodicalExecuter(function() 
	{
		var pars = 'timeframe=day';
		new Ajax.Updater('popularboxcontainer', 'mainpopularpings.php', 
		{
			method: 'get', 
			parameters: pars, 
			onLoading:function(request){ Element.show('popularpingLoader'); }, 
			onComplete:function(request){ Element.hide('popularpingLoader'); }
		});
	}, 300);
