jQuery(function($) { if($(window).width()>769){ $('.navbar .dropdown').hover(function() { $(this).find('.dropdown-menu').first().stop(true, true).delay(250).slideDown(); }, function() { $(this).find('.dropdown-menu').first().stop(true, true).delay(100).slideUp(); }); $('.navbar .dropdown > a').click(function(){ location.href = this.href; }); } $(window).load(function() { // The slider being synced must be initialized first $('#carousel').flexslider({ animation: "slide", controlNav: false, animationLoop: false, slideshow: true, itemWidth: 230, itemMargin: 10, }); $('#slider').flexslider({ animation: "slide", controlNav: false, animationLoop: false, slideshow: false, }); }); });