$(document).ready(function() {
gallery = kSlideshow({
wrapper: '#slideshow-only',
dataType: 'array',
dataSource: [{
"large":"img1.jpg",
"thumb":"img1_sml.jpg",
"title":"title!"
},
{
"large":"img2.jpg",
"thumb":"img2_sml.jpg",
"title":"title2!"
}],
autoPlay: false, //autoplayback is turned off
enableTitle: false, //images titles is turned off
startItem: 0
});
});