$(function(){var tw_counter = {n: 0,start: function(obj,c){if(obj.delay <= c){obj.action(this.n);c=0;}window.setTimeout(function(){ tw_counter.start(obj,c); },obj.timeout);c++; this.n++;}};function get_tweetts(){posts = '';tw = document.getElementById('no_tweetts');list = tw.getElementsByTagName('p');for(i=0; i<list.length; i++){posts += '<div id="tw-'+(i+1)+'" class="tw_display">'+list[i].innerHTML+'</div>';}$("#no_tweetts").remove();$(posts).appendTo("#tweetts-posts");$(".tw_display").hide();$("#tweetts-posts div:first").show();}get_tweetts();var tw_id = 1;new tw_counter.start({timeout: 500,delay: 15,action: function(n){tw_id++;$(".tw_display").hide();$("#tw-"+tw_id).fadeIn(300);if(tw_id == 3){ tw_id = 0; }}},0);});
