//the menu on the right $(function() { $('nav#menu-right').mmenu({ position: 'right', counters: true, searchfield: false }); }); //lazyimg $(function() { $("img.lazy").show().lazyload({ effect: "fadein", }); }); //back to top $(document).ready(function(){ $("#back-to-top").hide(); $(function () { $(window).scroll(function(){ if ($(window).scrolltop()>100){ $("#back-to-top").fadein(500); } else { $("#back-to-top").fadeout(500); } }); $("#back-to-top").click(function(){ $('body,html').animate({scrolltop:0},100); return false; }); }); });