function KickerPages() { this.value = 0; } var mySlide = new Array( 'http://c.americanapparel.net/storefront/headers/women/cardigans/1.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/10.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/11.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/12.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/18_410x206.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/copy (2) of gloves-1.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/copy (2) of new-2.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/copy (2) of new8.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/copy (2) of skirts2.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/copy (2) of winteritems_2.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/img_0803_3.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/img_5696-4.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/img_6194.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/jen_sweater.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/leggings.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sonia_410x206.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sweaters.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sweaters11.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sweaters2.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sweaters3.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sweaters96.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sweaters97.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sweaters98.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/sweaters99.jpg' ,'http://c.americanapparel.net/storefront/headers/women/cardigans/winteritems_10.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;