// JavaScript Document
$(document).ready(function(){    
	 
    $('#CustomSlideshow').slideshow({
		
        width:530,     // width in px
        height:100,    // height in px
        index:0,       // start from frame number N 
        time:4000,     // time out beetwen (ms)
        title:false,   // show title
        panel:true,    // show controls panel
        loop:true,    // stop looping
 
        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:false,       // 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':false,    // play slideshow
            'next':false,   // goto next frame (if it last go to first)
            'last':false,   // goto last frame
            'help':false,   // show help message
            'counter':false  // show slide counter
			
        }
    }).playSlide();
});