/* Scroll to Page Anchor */ $(function(){ $('a[href*="#"]:not([href="#"])').click(function() { var target = $(this.hash); var offset = -70; if ($(window).width() >= 740) { offset = -104; } target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); if (target.length) { $('html, body').animate({ scrollTop: target.offset().top + offset }, 1000); return false; } }); }); /* Scroll to Top Function */ $(document).ready(function(){ $(window).scroll(function(){ if ($(this).scrollTop() > 100) { $('.scrollup').fadeIn(); } else { $('.scrollup').fadeOut(); } }); $('.scrollup').click(function(){ $("html, body").animate({ scrollTop: 0 }, 600); return false; }); }); /* Add Form Disclaimer $(document).ready(function(){ $('

All personal data herein are processed in accordance with EU data protection legislation. All feasible security measures are in place.

').prependTo('#custom_form_8'); });*/