jQuery(document).ready(function(){
var owl = jQuery('#venue-section .owl-carousel');
owl.owlCarousel({
margin:20,
nav: true,
autoplay: true,
lazyLoad: true,
autoplayTimeout: 3000,
loop: false,
dots:false,
navText : ['',''],
responsive: {
0: {
items: 1
},
600: {
items: 2
},
1000: {
items: 3
}
},
autoplayHoverPause : true,
mouseDrag: true
});
});