﻿function scroll_to_element(targetElement) {
        $("html,body").animate({
            scrollTop: $(targetElement).offset().top
        }, 'slow');
}
