$(document).ready(function(){ if (typeof(jsvAnchorSmooth)=='undefined' || jsvAnchorSmooth=='' || jsvAnchorSmooth=='D4') jsvAnchorSmooth = 'swing'; if (typeof(jsvAnchorSmoothMSec)=='undefined' || jsvAnchorSmoothMSec=='' || jsvAnchorSmoothMSec=='D4') jsvAnchorSmoothMSec = 400; $('a[href^="#"] , area[href^="#"]').click(function(e){ e.preventDefault(); if ($('.maskToMenuLeftD4').length) $('.maskToMenuLeftD4').click(); if ($('.maskToMenuRightD4').length) $('.maskToMenuRightD4').click(); var ahref = $.attr(this, 'href').split('#'); ahref = ahref[1]; $('body,html').animate({ scrollTop: $('[name="' + ahref + '"]').offset().top }, parseInt(jsvAnchorSmoothMSec), jsvAnchorSmooth, function(){ window.location.hash = ahref; if (typeof(onAnchorSmooth_finish_)=='function') onAnchorSmooth_finish_(ahref); }); }); });