$(document).ready(function(){
    $('#MySlideshow').slideshow({
        width:210,     // width in px
        height:303,    // height in px
        index:0,       // start from frame number N
        time:5000,     // time out beetwen (ms)
        title:false,   // show title
        panel:false,    // show controls panel
        loop:true,    // stop looping
	play:true,
        effect:'fade',      // aviable fade, scrollUp/Down/Left/Right, zoom, zoomFade, zoomTL, zoomBR, growX, growY, random
        effecttime:1000,      // aviable fast,slow,normal and any valid fx speed value
        nextclick:false,       // bind content click next slide
        playframe:false,       // show frame "Play Now!"
        imgresize:true,       // resize image to slideshow window
        help:'Hello World!',
        controls :{         // show/hide controls elements
            'hide':false,   // show controls bar on mouse hover
            'first':false,  // goto first frame
            'prev':false,   // goto previouse frame (if it first go to last)
            'play':true,    // play slideshow
            'next':false,   // goto next frame (if it last go to first)
            'last':false,   // goto last frame
            'help':false,   // show help message
            'counter':true  // show slide counter
        }
    });
});