$(document).ready(function() { $('#home-slider').carousel({ interval: 8000 }); $('#eventsCarousel').carousel({ interval: 8000 }); $('#events-gallery-carousel').carousel({ interval: 8000 }); $('#imCarousel1').carousel({ interval: 5000 }); $('li.dropdown').bind('mouseover', openSubMenu); $('li.dropdown').bind('mouseout', closeSubMenu); function openSubMenu() { $(this).find('ul.dropdown-menu').show(); $(' > a', this).css('color', '#ff850a'); }; function closeSubMenu() { $(this).find('ul.dropdown-menu').hide(); $(' > a', this).css('color', '#777'); }; var clicked = false; $('#nav_toggle_search').click(function() { if (clicked == false) { $('.search .input-group').show(); $('#nav_toggle_search').removeClass('fa fa-search').addClass('fa fa-times'); clicked = true; } else { $('.search .input-group').hide(); $('#nav_toggle_search').removeClass('fa fa-times').addClass('fa fa-search'); clicked = false; } }); $("#accordian h3").click(function() { $("#accordian ul ul").slideUp(); if (!$(this).next().is(":visible")) { $(this).next().slideDown(); } }) $(window).scroll(function() { if ($(this).scrollTop() > 100) { $(".top-bar").css("display", "none"); $(".menu-container").css("border-bottom", "1px solid #fff"); $(".menu-navbar").css("border-bottom", "1px solid #e8e8e8"); } else { $(".top-bar").css("display", "block"); $(".menu-navbar").css("border-bottom", "1px solid #fff"); $(".menu-container").css("border-bottom", "1px solid #fff"); } }); $("#brands").owlCarousel({ navigation: false, autoPlay: 5000, responsive: true, slideSpeed: 300, paginationSpeed: 400, autoHeight: true, center:true, touchDrag:true, dots:false, dotsEach:false, itemsCustom: [ [0, 2], [450, 2], [600, 2], [700, 2], [1000, 3], [1200, 6], [1400, 6], [1600, 6] ] }); $("#team").owlCarousel({ navigation: false, autoPlay: 5000, responsive: true, slideSpeed: 300, paginationSpeed: 400, autoHeight: true, itemsCustom: [ [0, 1], [450, 2], [600, 2], [700, 2], [1000, 3], [1200, 3], [1400, 3], [1600, 3] ] }); $("div.bhoechie-tab-menu>div.list-group>a").click(function(e) { e.preventDefault(); $(this).siblings('a.active').removeClass("active"); $(this).addClass("active"); var index = $(this).index(); $("div.bhoechie-tab>div.bhoechie-tab-content").removeClass("active"); $("div.bhoechie-tab>div.bhoechie-tab-content").eq(index).addClass("active"); $('html, body').animate({ scrollTop: 100 }, 1000); }); $('#product_download .thumbnail').hover(function() { $(this).find('.caption').slideDown(250); }, function() { $(this).find('.caption').slideUp(250); }); });