The IRS recently updated some rules about trusts that could make your heirs accidentally liable for capital gains taxes.
It's another quiet change that could
//menu container
jQuery( "#block-aw-core-visitormainmenu .link--container > a:first-of-type" ).click(function() {
event.preventDefault();
});
// Smooth scroll that accounts for sticky navbar
// For links to the same page; creates a smooth scrolling effect
jQuery(function() {
var height = jQuery('.sticky-container').outerHeight();
// Select all links with hashes
jQuery('a[href*="#"]')
// Remove links that don't actually link to anything
.not('[href="#"]')
.not('[href="#0"]')
.click(function(event) {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = jQuery(this.hash);
target = target.length ? target : jQuery('[name=' + this.hash.slice(1) +']');
if (target.length) {
jQuery('html, body').animate( {
scrollTop: target.offset().top - height
}, 1000);
return false;
}
}
});
if(window.location.hash) {
// Smooth scroll to the anchor id
jQuery('html, body').animate( {
scrollTop: jQuery(window.location.hash).offset().top - height
}, 1000);
}
});
if (/MSIE 9/i.test(navigator.userAgent) || /rv:11.0/i.test(navigator.userAgent)) {
// This is internet explorer 9 or 11
jQuery( "body" ).addClass( "ie" );
}
if (/Edge\/\d./i.test(navigator.userAgent)){
// This is Microsoft Edge
jQuery( "body" ).addClass( "ie" );
}
// Make "Read More" link on Blog page to button
jQuery('.blog-posts .blog--imgside-middle-page .blog-body-container .more-link > a.more-link').addClass('button primary');
// Add firm name (heading) on Contact page
jQuery('.block--google-maps-with-address-block .google-map-container .google-map-caption').prepend('
Steven Kibbel Financial Planning
');
//contact form message text area
jQuery('footer form textarea').attr('rows','5');
// hide captcha unless someone clicks on form
jQuery( "footer form .g-recaptcha" ).hide();
jQuery( "footer form input, footer form textarea" ).click(function() {
jQuery( "footer form .g-recaptcha" ).fadeIn();
});