  $(function(){
  if( $('#customScroller').length != 0){ //check if we're on the right page
   var width = $('#slider a').length;
   $('#slider').width( width * 985 ); //give the slider the appropriate width
   
   var count =0; //initial slide position
   function slide(){
       if( count < (width - 1) ){ //we want to check if at end of the slider
           count++;
       }else{
           count = 0;
              }
              var toMove = 0;
              toMove = (-1 * (count * 985 ));
              
       $('#slider').animate({
                        left: toMove 
                    }, 1000, function() {
                     //complete
                    }); 
   }
               var s = window.setInterval(slide, 5000);       
  }
 });
