$('#preloader').height($(document).height()); $(function() { $('.slider').unslider({ speed: 700, delay: 6000, complete: function() {}, pause:false, keys: false, dots: false, fluid: true, fade: true, autoplay: true }); }); var unslider = $('.slider').unslider(), data = unslider.data('unslider'); $('.unslider-arrow').click(function() { var fn = this.className.split(' ')[1]; // Either do unslider.data('unslider').next() or .prev() depending on the className unslider.data('unslider')[fn](); }); /***********************************************/ $('.topBut').click(function(){ $('html, body').stop(true).animate({scrollTop:0}, 600, 'easeOutExpo'); }); $('.topButV').click(function(){ $('html, body').stop(true).animate({scrollTop:0}, 600, 'easeOutExpo'); }); $('.topBut').mouseover(function(){ $(this).stop(true).animate({ backgroundSize: "60%" }, 100)}).mouseout(function(){ $(this).stop(true).animate({ backgroundSize: "40%" }, 100); }); $('.topButV').mouseover(function(){ $(this).stop(true).animate({ backgroundSize: "60%" }, 100)}).mouseout(function(){ $(this).stop(true).animate({ backgroundSize: "40%" }, 100); });