﻿// CTA
function getCTA(type){
	
	if (type == "home") {
		
	var data = 
   ['<ul class="redArrows"><li><a href="#">Learn more about mortgages in our mortgage glossary.</li>',
	'<li><a href="#">I\'m ready to buy my first home</a> [LINK TO MORTGAGE LEAD SHEET LANDING PAGE AVAILABLE MARCH 8]</li>',
	'<h3>Talk to a BMO Mortgage Representative</h3>',
	'<p>Locate a <a href="#">Mobile Mortgage Specialist</a> near you, call 1-877-CALL-BMO or visit your nearest branch to speak to a <a href="#">mortgage representative</a>.</p>',
   ].join('\n'); 
   return data;
	}
	
	else if (type == "speak") {
		
	var data = 
   ['<h3>Talk to a BMO Mortgage Representative</h3>',
	'<p>Locate a <a href="#">Mobile Mortgage Specialist</a> near you, call 1-877-CALL-BMO or visit your nearest branch to speak to a <a href="#">mortgage representative</a>.</p>',
   ].join('\n'); 
   return data;
	}
	
	else if (type == "questions") {
		
	var data = 
	['<div id="howToBuyPanel" class="rightPanel"><div class="top"><img src="/pccgprefix/images/ttl_howTo.gif" alt="How to buy this product" class="panelTitle" /><ul class="howToBuy">',
	 '<li class="phone">1-877-225-5266</li>',
	 '<li class="branch"><a href="http://locator.bmo.com/Default.aspx?t=ms&lang=en" target="_blank" title="Mortgage Specialist">Mortgage Specialist</a></li>',
	 '<li class="online last"><a href="https://locator.bmo.com/Default.aspx?t=bmo&lang=en" title="Locate a Branch">Locate a Branch</a></li>',
	 '</ul></div><div class="bottom"></div></div>',
	].join('\n');
	return data;
	}
	
	else if (type == "questionsFR") {
		
	var data = 
	['<div id="howToBuyPanel" class="rightPanel"><div class="top"><img src="/pccgprefix/images/ttl_howTo.gif" alt="How to buy this product" class="panelTitle" /><ul class="howToBuy">',
	 '<li class="phone">1-877-225-5266</li>',
	 '<li class="branch"><a href="http://locator.bmo.com/Default.aspx?t=ms&lang=en" target="_blank" title="Mortgage Specialist">Mortgage Specialist</a></li>',
	 '<li class="online last"><a href="https://locator.bmo.com/Default.aspx?t=bmo&lang=fr" title="Locate a Branch">Trouver une succursale</a></li>',
	 '</ul></div><div class="bottom"></div></div>',
	].join('\n');
	return data;
	}
}

