$(function(){
	$.ajax({
		type: "POST",
		url: "/bloglist/top_list.php",
		success: function(msg){
			if( msg ){
				$("#bloglist .update").html(msg);
				fontsizeSwitch.set('.font_switch', '#bloglist .update');
			}
		}
	});
	
	$.ajax({
		type: "GET",
		url: "/bloglist/ping.php",
		data: "mode=timer",
		success: function(msg){
			return true;
		}
	});
});
