      <!-- Begin
        var images = ['http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/icom.png',
                      'http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/idas.png',
                      'http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/kenwood.png',
                      'http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/motorola.png',
                      'http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/motto.png',
                      'http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/nex.png',
                      'http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/tbo.png',
                      'http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/team.png',
                      'http://www.direct-telecom-services.co.uk/templates/dts/images/scroller/vertex.png'];
        var position = 0;
        var speed = 4500;
        var spacing = 50;
    
        $(function()
          {
          $.each(images, function(k, v) {
            var image = $('<img class="item" src="'+images[k]+'" />');
            $('.scroller_container').prepend(image);
            });
          addImageTwo()
          });
        function addImageTwo()
          {
          var img = new Image();
          img.onload = function()
            {
            var image = $('<img class="item" src="'+images[position]+'" />');
            image.css('margin-left', '-'+this.width+'px');
            position++;
            if(position > (images.length-1))
            position = 0;
            $('.scroller_container').prepend(image);
            var animate_width = spacing + this.width;
            var function_called = false;
            $(image).animate({'margin-left':'+='+animate_width+'px'}, speed, 'linear', function()
              {
              if(function_called == false)
                {
                addImageTwo();
                function_called = true;
                $('.item').each(function()
                  {
                  var position = $(this).position();
                  if(position.left > $('.scroller_mask').width())
                    {
                    $(this).remove();
                    }
                  });
                }
              });
            }
          img.src = images[position];
          }
      //  End -->
