var e="最新のつぶやきが一時的に取得できませんでした";
jQuery.getJSON("http://twitter.com/statuses/user_timeline/drcilabo.json?callback=?", function(data) {
	jQuery("#tweet01").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/labo_labo.json?callback=?", function(data) {
     jQuery("#tweet02").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/GENOMER.json?callback=?", function(data) {
     jQuery("#tweet03").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/yoshi0505.json?callback=?", function(data) {
     jQuery("#tweet04").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/drcilabo_shop.json?callback=?", function(data) {
     jQuery("#tweet05").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/drcilabo_csteam.json?callback=?", function(data) {
     jQuery("#tweet06").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/drcilabo_pd.json?callback=?", function(data) {
     jQuery("#tweet07").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/DrCiLaboUSA.json?callback=?", function(data) {
     jQuery("#tweet08").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/tarumilabo.json?callback=?", function(data) {
     jQuery("#tweet09").html(data[0].text);
});
jQuery.getJSON("http://twitter.com/statuses/user_timeline/drcilabo_gelun.json?callback=?", function(data) {
     jQuery("#tweet10").html(data[0].text);
});
var tweet01 = jQuery("#tweet01").html().replace(/<!--.*-->/, "").trim();
if (tweet01 == "") { jQuery("#tweet01").html(e); }
//var tweet02 = jQuery("#tweet02").html().replace(/<!--.*-->/, "").trim();
//if (tweet02 == "") { jQuery("#tweet02").html(e); }
//var tweet03 = jQuery("#tweet03").html().replace(/<!--.*-->/, "").trim();
//if (tweet03 == "") { jQuery("#tweet03").html(e); }
//var tweet04 = jQuery("#tweet04").html().replace(/<!--.*-->/, "").trim();
//if (tweet04 == "") { jQuery("#tweet04").html(e); }
//var tweet05 = jQuery("#tweet05").html().replace(/<!--.*-->/, "").trim();
//if (tweet05 == "") { jQuery("#tweet05").html(e); }
//var tweet06 = jQuery("#tweet06").html().replace(/<!--.*-->/, "").trim();
//if (tweet06 == "") { jQuery("#tweet06").html(e); }
//var tweet07 = jQuery("#tweet07").html().replace(/<!--.*-->/, "").trim();
//if (tweet07 == "") { jQuery("#tweet07").html(e); }
//var tweet08 = jQuery("#tweet08").html().replace(/<!--.*-->/, "").trim();
//if (tweet08 == "") { jQuery("#tweet08").html(e); }
//var tweet09 = jQuery("#tweet09").html().replace(/<!--.*-->/, "").trim();
//if (tweet09 == "") { jQuery("#tweet09").html(e); }
var tweet10 = jQuery("#tweet10").html().replace(/<!--.*-->/, "").trim();
if (tweet10 == "") { jQuery("#tweet10").html(e); }
String.prototype.trim = function() {
    return this.replace(/^[ ]+|[ ]+$/g, '');
}

