
function twit_show(){

if(d>2){d=0;}

if( d==0 ) {
$('#twit').show();
$('#twit1').hide();
$('#twit2').hide();

}
 if( d==1 ) {
$('#twit').hide();
$('#twit1').show();
$('#twit2').hide();

}
 if( d==2 ) {
$('#twit').hide();
$('#twit1').hide();
$('#twit2').show();
}
d=d+1;
setTimeout("twit_show();",6000);
}

var d=0;
twit_show();
