

function do_refresh_whos_on_tworl()
{
	// Do the fade
	new Effect.Fade(document.getElementById('sidebar-bottom-fadearea'), {duration:.7, to: 0.01});
	
	// Call the ajax data request, which will also call the fade in
	setTimeout("xajax_csxa_service_rpc('refresh_whos_on_tworl', '')", 700);
}



function do_refresh_recent_tworls()
{
	// Do the fade
	new Effect.Fade(document.getElementById('tworlspy-fadearea'), {duration:.7, to: 0.01});	
	
	// Call the ajax data request, which will also call the fade in
	setTimeout("xajax_csxa_service_rpc('refresh_recent_tworls', '')", 700);
}

function do_refresh_cloud()
{
	// Do the fade
	new Effect.Fade(document.getElementById('tworlcloud-fadearea'), {duration:.7, to: 0.01 });	
	
	// Call the ajax data request, which will also call the fade in	
	setTimeout("xajax_csxa_service_rpc('refresh_cloud', '')", 700);
}

