  var scrollSpeed='slow';
  var ScrollDelay= 7000;
 
  doScrollNext=function(obj){
  obj=$(obj).parent().parent();
  $(obj).find('.scrollBlock .scrollItem:visible').animate({opacity:"hide"},scrollSpeed,function(){
      if($(this).html()==$(this).parent().find('.scrollItem:last').html()){
        $(this).parent().find('.scrollItem:first').animate({opacity:"show"},scrollSpeed);
      }else{ $(this).next('.scrollItem').animate({opacity:"show"},scrollSpeed); }
  }); }
  doScroll=function(obj){ doScrollNext(obj); setTimeout(function(){doScroll(obj);},ScrollDelay); }

  $(document).ready(function(){
    $('.scrollBlock .scrollItem').hide();
    $('.scrollBlock').each(function(){
      $(this).find('.scrollItem:first').show();
      var obj=$(this).parent('').find('.scrollBlock');
      setTimeout(function(){doScroll(obj);},ScrollDelay);
    });
  });
