 $(function(){
 	if( $('#customScroller').length != 0){ //check if we're on the right page
 		var width = $('#slider a').length;
 		$('#slider').width( width * 930 ); //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 * 930 ));
 	            
 		    $('#slider').animate({
                        left: toMove 
                    }, 1000, function() {
                    	//complete
                    });	
 		}
               var s = window.setInterval(slide, 8500);       
 	}
 });
