(function($){ $(function(){ $('.flexslider').flexslider(); $('.flex-carousel').flexslider({ animation: "slide", animationLoop: true, controlNav: false, itemWidth: 250, itemMargin: 5 }); }); })(jQuery); // jQuery powered scroll to top jQuery(document).ready(function(){ //Check to see if the window is top if not then display button jQuery(window).scroll(function(){ if (jQuery(this).scrollTop() > 100) { jQuery('.scroll-to-top').fadeIn(); } else { jQuery('.scroll-to-top').fadeOut(); } }); //Click event to scroll to top jQuery('.scroll-to-top').click(function(){ jQuery('html, body').animate({scrollTop : 0},800); return false; }); });