$(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 }); // color, wheel $(".wheel-img").css("display","none"); $(".color-txt").click(function(){ $(".color-txt > div").addClass("on"); $(".wheel-txt > div").removeClass("on"); $(".color-img").css("display","block"); $(".wheel-img").css("display","none"); }); $(".wheel-txt").click(function(){ $(".wheel-txt > div").addClass("on"); $(".color-txt > div").removeClass("on"); $(".color-img").css("display","none"); $(".wheel-img").css("display","block"); }); });