Reposition Yourself: Living Life Without Limits by Jakes, T. D.
An inspirational narrative self-help book that provides the spiritual underpinnings, Christian principles ...to adjust to the many changes that life brings. Reposition Yourself, draws on wisdom gleaned from Jakes's thirty years plus of counseling and working with high-profile and everyday people on financial, relational, and spiritual creativity on the path to an enriched life filled with contentment at every stage.
Read more
function myFunction() {
var dots = document.getElementById("dots");
var moreText = document.getElementById("more");
var btnText = document.getElementById("myBtn");
if (dots.style.display === "none") {
dots.style.display = "inline";
btnText.innerHTML = "Read more";
moreText.style.display = "none";
} else {
dots.style.display = "none";
btnText.innerHTML = "Read less";
moreText.style.display = "inline";
}
}