
function toggle() {
	var ele = document.getElementById("toggleText");
	var text = document.getElementById("displayText");
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "Important information about these plans";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "Important information about these plans ";
	}
} 


function toggleB() {
	var ele = document.getElementById("toggleTextB");
	var text = document.getElementById("displayTextB");
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "Important information about this plan";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "Important information about this plan";
	}
} 


function toggleTwo() {
	var ele = document.getElementById("toggleTextTwo");
	var text = document.getElementById("displayTextTwo");
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "Attend a free <strong>product seminar</strong> to learn about Medicare and the Blues plan options available to you.";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "Attend a free <strong>product seminar</strong> to learn about Medicare and the Blues plan options available to you.";
	}
} 


function toggleThree() {
	var ele = document.getElementById("toggleTextThree");
	var text = document.getElementById("displayTextThree");
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "Attend a free <strong>educational forum</strong> that will provide the knowledge you need to transition into Medicare.";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "Attend a free <strong>educational forum</strong> that will provide the knowledge you need to transition into Medicare.";
	}
} 

