var x3;
var mover3 = 0;
var larguracontainer3 = 920;

function moveLeft3(){    
    
    larguraScroll = document.getElementById('scrolabbleslider3').style.width;
    
    
    totalLargura = (larguraScroll.substring(0,(larguraScroll.length-2))-larguracontainer3);
        
    x3 = window.setInterval(function goLeft3(){
            
            mover3 = mover3 + 6;
            
            if(/MSIE (\d+\.\d+);/.test(navigator.userAgent)){
                 var ieversion=new Number(RegExp.$1);
                  if (ieversion>=6 && ieversion <7){
                      mover3 = mover3 + 2;   
                  }
            }            
            document.getElementById('scrolabbleslider3').style.marginLeft = -(mover3) +'px'; 
            
            
            if(mover3 > totalLargura){
                window.clearInterval(x3);
            }
    },5);
}


function moveRight3(){    
    x3 = window.setInterval(function goRight3(){
            mover3 = mover3 - 6;
            
            if(/MSIE (\d+\.\d+);/.test(navigator.userAgent)){
                 var ieversion=new Number(RegExp.$1);
                  if (ieversion>=6 && ieversion <7){
                      mover3 = mover3 - 2;   
                  }
            }            
            document.getElementById('scrolabbleslider3').style.marginLeft = -(mover3) +'px';
            if(mover3 < 1){
                   window.clearInterval(x3);
                   document.getElementById('scrolabbleslider3').style.marginLeft = '0px';
            }   
    },5);
}


function stopMove3(){
    window.clearInterval(x3);
}

