// JavaScript Document $(function () { $('.hp_tooltip').tooltip({ placement: 'left' }); $('body').scrollspy({ target: '#mainnav', offset: 150 }); // ANIMACAO SKYPESCROLL BOOTSTRAP $("#mainnav ul li a").on('click', function(e) { // prevent default anchor click behavior e.preventDefault(); // store hash var hash = this.hash; // animate $('html, body').animate({ scrollTop: $(hash).offset().top - 89 // ¼½¼Ç »ó´Ü ¿©¹é ³ôÀÌÁ¶Àý }, 600, function(){ // when done, add hash to url // (default click behaviour) //window.location.hash = hash; }); }); });