// btn back jQuery(document).ready(function(){ jQuery('a#btn_back').show(); jQuery('a#btn_back').click(function(e){ e.preventDefault(); history.go(-1); }); }); // navigation jQuery(document).ready(function(){ jQuery("ul.submenu").hover(function(){ $(this.parentNode).toggleClass("highlight") }); }); // btn up jQuery(window).scroll(function(){ if (jQuery(window).scrollTop() >= 40) { jQuery("#btn_up") .stop() .css({"top": (jQuery(window).scrollTop() + jQuery(window).height() - 30) + "px"}); } });