$(function() { /* INDEX */ //OVERVIEW MAIN SLIDE $('.owl-carousel-hero').owlCarousel({ loop:true, nav:true, items:1 }); //MODELS-TAB $('.models-tab').owlCarousel({ loop:false, nav:false, items:1, mouseDrag:false }); //COLORCHIP-WRAP $('.color-container > a').on('click', function(e) { e.preventDefault(); $(this).siblings().removeClass('selected'); $(this).addClass('selected'); $('.car-container img').removeClass('selected'); $($(this).attr('href')).addClass('selected'); }); //GALLERY $('.gallery-cont').owlCarousel({ loop:true, nav:true, items:1 }); });