$(function(){
	$.ajax({
		type: "POST",
		url: "bloglist/list.php",
		success: function(msg){
			if( msg ){ $("#latest-blog ul").html(msg); }
		}
	});
	
	$.ajax({
		type: "GET",
		url: "bloglist/ping.php",
		data: "mode=timer",
		success: function(msg){
			return true;
		}
	});
});
