@Nantha
Ok, at bottom try to change following rows:
$('#pictures .img-bar .small-img').css('width', ((100 - 1.6*items)/items)*b_width/100 + 'px');
$('#pictures .img-bar .small-img').css('margin-left', 0.8*b_width/100 + 'px');
$('#pictures .img-bar .small-img').css('margin-right', 0.8*b_width/100 + 'px');
to:
$('#pictures .img-bar .small-img').css('width', Math.floor(((100 - 1.6*items)/items)*b_width/100) + 'px');
$('#pictures .img-bar .small-img').css('margin-left', Math.floor(0.8*b_width/100) + 'px');
$('#pictures .img-bar .small-img').css('margin-right', Math.floor(0.8*b_width/100) + 'px');