$(function(){
	var url1 = "http://feedblog.ameba.jp/rss/ameblo/riz-kochi-inter";
	$.post('/php/rssvv.php',  {"u":url1}, function(res){
		if(res){
			$("#blog-ameba1").html(res);
		}
	});
	var url2 = "http://feedblog.ameba.jp/rss/ameblo/1048me";
	$.post('/php/rssvv.php',  {"u":url2}, function(res){
		if(res){
			$("#blog-ameba2").html(res);
		}
	});
	var url3 = "http://feedblog.ameba.jp/rss/ameblo/simanto1048riz";
	$.post('/php/rssvv.php',  {"u":url3}, function(res){
		if(res){
			$("#blog-ameba3").html(res);
		}
	});

	var id1 = "RiZ_Group";
	$.post('/php/twitter.php',  {"u":id1}, function(res){
		if(res){
			$("#twitter-text1").html(res);
		}
	});

	var id2 = "Riz_oomoto";
	$.post('/php/twitter.php',  {"u":id2}, function(res){
		if(res){
			$("#twitter-text2").html(res);
		}
	});

	var id3 = "RiZsimanto";
	$.post('/php/twitter.php',  {"u":id3}, function(res){
		if(res){
			$("#twitter-text3").html(res);
		}
	});

});

