<script type="text/javascript">
var i_ctr=0, i_ctr2, i_total;
var i_speed = 2000;
var i_speed = 300;
function shownext2(){
jQuery('.sidebarq .sidequotes:eq('+i_ctr+')')
.fadeIn('slow',function(){
i_ctr2 = i_ctr;
++i_ctr;
if(i_ctr>=(i_total)){
i_ctr = 0;
}
setTimeout(shownext,i_speed);
});
}
function shownext(){
jQuery('.sidebarq .sidequotes:eq('+i_ctr2+')').fadeOut('slow',function(){
shownext2(i_ctr+1);
});
}
jQuery(function() {
i_total = jQuery('.sidebarq .sidequotes').length;
i_ctr2 = i_ctr;
i_ctr = i_ctr2+1;
jQuery('.sidebarq .sidequotes').hide();
jQuery('.sidebarq .sidequotes:eq('+i_ctr2+')').show();
setTimeout(shownext,i_speed);
});
</script>