$(document).ready(function(){    
    $('#center-image-rotator').slideshow({
		playframe:false,
		width: 281,      // width in px
        height: 455,
		title: false,     // height in px
		
		 controls :{         // show/hide controls elements
            'hide':false,    // show controls bar on mouse hover   
            'first':false,   // goto first frame
            'prev':true,    // goto previouse frame (if it first go to last)
            'play':false,    // play slideshow
            'next':true,    // goto next frame (if it last go to first)
            'last':false,    // goto last frame
            'help':false,    // show help message
            'counter':false  // show slide counter
        }

	});
});

