Multi Slideshow with Auto Play

Camomile Bumblebees Wood Toothpicks Camomile Bumblebees Wood Toothpicks Camomile Bumblebees Wood Toothpicks
Camomile Bumblebees Wood Toothpicks Camomile Bumblebees Wood Toothpicks Camomile Bumblebees Wood Toothpicks
Camomile Bumblebees Wood Toothpicks Camomile Bumblebees Wood Toothpicks Camomile Bumblebees Wood Toothpicks

Source

HTML:
<table class="demo" width="960px">
    <tr>
        <td>
            <img src="img/image_0.jpg" alt="Camomile"/>
            <img src="img/image_1.jpg" alt="Bumblebees"/>
            <img src="img/image_2.jpg" alt="Wood Toothpicks"/>
        </td>
        <td>..</td>
        <td>..</td>
    </tr>
    <tr>
        <td>..</td>
        <td>..</td>
        <td>..</td>
    </tr>
    <tr>
        <td>..</td>
        <td>..</td>
        <td>..</td>
    </tr>
</table>
JavaScript:
<script type="text/javascript">
//<![CDATA[
$(document).ready(function(){

    $('.demo td:odd').slideshow({
        title:false,
        panel:false,
        playframe:false
    }).slideshow('play');

    $('.demo td:even').slideshow({
        index:1,
        title:false,
        panel:false,
        play:true,
        playframe:false
    });
});
//]]>
</script>