Hi!
I'd like to create a slider like in these image galleries.
It should show multiple entries at a time, as shown in the following image:
http://i.imgur.com/nTBPw.png (@ILMV sorry, I'm not allowed to place it by myself..)
When I click on the right arrow it should slide ("iPhone-like") to the left so that you see 5, 6, 7 and 8.
The entries (imaged by numbers) are created dynamicly.
<div>
    <ul>
        <li>1</li>  <!-- ← visible -->
        <li>2</li>  <!-- ← visible -->
        <li>3</li>  <!-- ← visible -->
        <li>4</li>  <!-- ← visible -->
        <li>5</li>  <!-- ← not visible -->
        <li>6</li>  <!-- ← not visible -->
        <li>7</li>  <!-- ← not visible -->
        <li>8</li>  <!-- ← not visible -->
    </ul>
</div>
I know how a slider works and would be able to create one by myself, but I can't figure how to create that (CSS-)layout..
Thank you in advance
EDIT to make that clear: the order is relevant because I'd like to build a "all of our customers" grid-like view, which are sorted by their titles.