    first = 1;
    last = 3;
    current = 1;
     
     function scroll()
     {
        
            //nextPicture();
           Timer = setTimeout("nextPicture()", 8000);
        
       
        
     }
     
     // Trying to sort out SetInterval as it crashes the current script!!!!
           
     function nextPicture() {
         // Hide current picture
         //alert("this");
         //alert(current);
         object = document.getElementById('fadesetoffers' + current);
         object.style.display = 'none';
               
         // Show next picture, if last, loop back to front
         if (current == last) { current = 1; }
         else { current++ }
         object = document.getElementById('fadesetoffers' + current);
         object.style.display = 'block';
         scroll();
      }