function KickerPages() { this.value = 0; } var mySlide = new Array( 'http://c.americanapparel.net/storelocations/images/headers/1.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/12.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/13.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/14.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/15.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/16.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/17.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/18.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/19.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/2.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/20.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/23.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/25.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/26.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/27.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/28.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/29.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/3.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/30.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/31.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/32.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/33.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/34.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/35.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/36.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/37.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/39.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/40.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/41.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/42.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/43.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/44.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/45.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/5.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/6.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/7.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/70.jpg' ,'http://c.americanapparel.net/storelocations/images/headers/8.jpg' ); var myInterval = 0; var myIntervalPause = 0; var myTimeout = 0; var myAPI; function ScrollThroughmyPages(){ myAPI.next(500); RestartmyInterval(); } function AutoScroll() { randArray(mySlide); for(var x = 0; x < mySlide.length; x++) if (x <=0) document.getElementById('myItems').innerHTML += ''; else document.getElementById('myItems').innerHTML += ''; $(function() { $("#myScrollable").myScrollable({horizontal:true}); }); if (document.getElementById('myScrollable') != null) { myAPI = $("#myScrollable").myScrollable(); myTotal = myAPI.getStatus().total; if (myTotal <= 1) { $('DIV.myNext').hide(); $('DIV.myPrev').hide(); } RestartmyInterval(); } } function RestartmyInterval() { LoadImgs(); myPause = 5000; CancelmyInterval(); myInterval = setInterval('ScrollThroughmyPages()',myPause); } function PausemyInterval(){ LoadImgs(); CancelmyInterval(); clearTimeout(myTimeout); myTimeout = setTimeout('RestartmyInterval()',5000); } function CancelmyInterval(){ LoadImgs(); clearInterval(myInterval); } function LoadImgs(){ myIndex = myAPI.getStatus().index; LoadImg(myIndex - 1); LoadImg(myIndex); LoadImg(myIndex + 1); } function LoadImg(index){ Item = document.getElementById('myItem' + index); if ( Item != null ){ if (mySlide[index] != null && Item.src != mySlide[index]) { Item.src = mySlide[index]; } } } function randArray(o){ for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x); return o; } window.onload=AutoScroll;