//トップページメイン

//$(function () {
//     $('.top_main img').hide();
//});
// 
//var i = 0;
//var int=0;
//$(window).bind("load", function() {
//     var int = setInterval("doThis(i)",1500);
//});
// 
//function doThis() {
//     var images = $('.top_main img').length;
//     if (i >= images) {
//          clearInterval(int);
//    }
//    $('.top_main img:hidden').eq(0).fadeIn(5000);
//    i++;
//}
//

$(function(){
    $('.top_main img:gt(0)').hide();
    setInterval(function(){
      $('.top_main :first-child').fadeOut(3000)
         .next('img').fadeIn('slow')
         .end().appendTo('.top_main');},
      6000);
});



//Twitter

var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-22286264-1']);
  _gaq.push(['_trackPageview']);
 
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
 
	$(function(){
      $(".tweet").tweet({
        avatar_size: 30,
        count: 30,
        username: ["livesmode"],
        loading_text: "つぶやき検索中...",
        refresh_interval: 10
      });
    });


