What’s the True Cost of the Loan You Are Considering?
This hypothetical example is used for illustrative purposes only. Actual results will vary.
This information is not intended as tax, legal, investment, or retirement advice or recommendations,
and it may not be relied on for the purpose of avoiding any federal tax penalties. You are encouraged
to seek guidance from an independent tax or legal professional. The content is derived from sources
believed to be accurate. Neither the information presented nor any opinion expressed constitutes a
solicitation for the purchase or sale of any security.
<script>
$(document).ready(function() {
// Call Out Box Order
var advisor;
var cta_url_1 = '/contact_us'; // Insert URL that needs to be in CTA 1
var cta_url_2 = 'Free-Reports.6.htm'; // Insert URL that needs to be in CTA 2
var cta_url_3 = '.7.htm'; // Insert URL that needs to be in CTA 3
$('body.home #media').find('.item').each(function() {
advisor = $(this).find('.co-btn').attr('href');
if (advisor == cta_url_1)
{ $(this).addClass('one'); }
else if (advisor == cta_url_2)
{ $(this).addClass('two'); }
else if (advisor == cta_url_3)
{ $(this).addClass('three'); }
})
})
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].onclick = function(){
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.display === "block") {
panel.style.display = "none";
} else {
panel.style.display = "block";
}
}
}