function toggle() {
var ele = document.getElementById("toggleText");
var text = document.getElementById("displayText");
if(ele.style.display == "block") {
ele.style.display = "none";
text.innerHTML = "<h3>Is what you are presently doing working? (click here)</h3>";
}
else {
ele.style.display = "block";
text.innerHTML = "<h3>Is what you are presently doing working? (click here)</h3>";
}
}

function toggle2() {
var ele = document.getElementById("toggleText2");
var text = document.getElementById("displayText2");
if(ele.style.display == "block") {
ele.style.display = "none";
text.innerHTML = "<h3>Getting help for yourself is often the first step (click here)</h3>";
}
else {
ele.style.display = "block";
text.innerHTML = "<h3>Getting help for yourself is often the first step (click here)</h3>";
}
}

function toggle3() {
var ele = document.getElementById("toggleText3");
var text = document.getElementById("displayText3");
if(ele.style.display == "block") {
ele.style.display = "none";
text.innerHTML = "<h3>The Benefits of working with our addiction specialists (click here)</h3>";
}
else {
ele.style.display = "block";
text.innerHTML = "<h3>The Benefits of working with our addiction specialists (click here)</h3>";
}
}



