﻿// JScript File
        //slider's width
        var swidth=974


        //slider's height
        var sheight=82

        //slider's speed;
        var sspeed=8


        var imagef=''


        //images: change to your own

        var leftimage=new Array();
        leftimage[0]='<img src="images/Client/A&F.gif" alt="Abercrombie &amp; Fitch" />&nbsp;&nbsp;'
        leftimage[1]='<img src="images/Client/Aeropostale.gif" alt="Aeropostale" />&nbsp;&nbsp;'
        leftimage[2]='<img src="images/Client/CiCis.gif" alt="CiCis Pizza" />&nbsp;&nbsp;'
        leftimage[3]='<img src="images/Client/Claires.gif" alt="Claires" />&nbsp;&nbsp;'
        leftimage[4]='<img src="images/Client/GanderMTN.gif" alt="Gander Mountain" />&nbsp;&nbsp;'
        leftimage[5]='<img src="images/Client/Hibbett-Sports.gif" alt="Hibbet Sports" />&nbsp;&nbsp;'
        leftimage[6]='<img src="images/Client/Leslies.gif" alt="Leslies" />&nbsp;&nbsp;'
        leftimage[7]='<img src="images/Client/McCormickShmicks.gif" alt="McCormick &amp; Shmicks" />&nbsp;&nbsp;'
        leftimage[8]='<img src="images/Client/Meijer.gif" alt="Meijer" />&nbsp;&nbsp;'
        leftimage[9]='<img src="images/Client/RAC.gif" alt="Rent-A-Center" />&nbsp;&nbsp;'
        leftimage[10]='<img src="images/Client/Golfsmith.gif" alt="Golfsmith" />&nbsp;&nbsp;'
        leftimage[11]='<img src="images/Client/Sally.gif" alt="Sally" />&nbsp;&nbsp;'
        leftimage[12]='<img src="images/Client/Shoe Carnival.gif "alt="Shoe Carnival" />&nbsp;&nbsp;'
        leftimage[13]='<img src="images/Client/Valero.gif" alt="Valero" />&nbsp;&nbsp;'


        for (mi=0;mi<leftimage.length;mi++)
        imagef=imagef+leftimage[mi]


        function start(){
        if (document.all) return
        if (document.getElementById && document.getElementById("slider")){
        document.getElementById("slider").style.visibility="show"
        initial6(document.getElementById('slider'))
        }
        else if(document.layers && document.slider1){
        document.slider1.visibility="show"
        intialslide()
        }
        }
        function intialslide(){
        document.slider1.document.slider2.document.write('<nobr>'+imagef+'</nobr>')
        document.slider1.document.slider2.document.close()
        thel=document.slider1.document.slider2.document.width
        document.slider1.document.slider2.left-=thel
        sslide()
        }
        function sslide(){
        if (document.slider1.document.slider2.left>=thel*(-1)){
        document.slider1.document.slider2.left-=sspeed
        setTimeout("sslide()",100)
        }
        else{
        document.slider1.document.slider2.left=swidth
        sslide()
        }
        }
        function initial6(whichdiv){
        tdiv6=eval(whichdiv)
        tdiv6.innerHTML=('<nobr>'+imagef+'</nobr>')
        tdiv6.style.left=swidth
        thel=swidth*leftimage.length
        scroll6()
        }
        function scroll6(){
        if (parseInt(tdiv6.style.left)>=thel*(-1)){
        tdiv6.style.left=parseInt(tdiv6.style.left)-sspeed
        setTimeout("scroll6()",100)
        }
        else{
        tdiv6.style.left=swidth
        scroll6()
        }
        }
        //You might run into a position problem within the page, using either
        //NS4.x or NS6.x. To correct this use the coordinates: 'left=value',
        //'top=value' within ilayer/layer tags or 'position:relative/absolute;
        //left:value;top:value;' within NS6's div tags.
        //Those values can be either positive or negative!
        //Make sure you've got the onload='...;' within body tag but without
        //takeFocus(); there!
