
$(document).ready(function(){
    $('.home div.slideHome:eq(0)').slideshow({
        width:250,
        height:300,
        title:false,
        panel:false,
        playframe:false,
        play:true,
        time:3535,
        effect:'fade',
        effecttime:1300
    });
    $('.home div.slideHome:eq(1)').slideshow({
        width:250,
        height:300,
        title:false,
        panel:false,
        playframe:false,
        play:true,
        time:4289,
        effect:'fade',
        effecttime:1200
    });
    $('.home div.slideHome:eq(2)').slideshow({
        width:250,
        height:300,
        title:false,
        panel:false,
        playframe:false,
        play:true,
        time:5007,
        effect:'fade',
        effecttime:1500
    });
});
/* ---------------------------------
$(document).ready(function(){
    $('#CustomSlideshow').slideshow({
        width:320,      // width in px
        height:240,     // height in px
        index:0,        // start from frame number N
        time:3000,      // time out beetwen slides
        title:true,     // show title
        panel:true,     // show controls panel
        play:false,     // play slideshow
        loop:true,      // looping
        effect:'fade',  // aviable fade, scrollUp/Down/Left/Right, zoom, zoomFade, growX, growY
        effecttime:1000,// aviable fast,slow,normal and any valid fx speed value
        filter:true,    // remove <br/>, empty <div>, <p> and other stuff
        nextclick:false,      // bind content click next slide
        playclick:false,      // bind content click play/stop
        playhover:false,      // bind content hover play/stop
        playhoverr:false,     // bind content hover stop/play (reverse of playhover)
        playframe:true,       // show frame "Play Now!"
        imgresize:false,      // resize image to slideshow window
        imgcenter:true,       // set image to center // TODO
        imgajax:true,         // load images from links
        linkajax:false,       // load html from links
        help:'Plugin homepage: <a href="http://slideshow.hohli.com">(a)Slideshow</a><br/>'+
             'Author homepage: <a href="http://anton.shevchuk.name">Anton Shevchuk</a>',

        controls :{         // show/hide controls elements
            'hide':true,    // show controls bar on mouse hover
            'first':true,   // goto first frame
            'prev':true,    // goto previouse frame (if it first go to last)
            'play':true,    // play slideshow
            'next':true,    // goto next frame (if it last go to first)
            'last':true,    // goto last frame
            'help':true,    // show help message
            'counter':true  // show slide counter
        }
    });
});

----------------------------------- */
