<!--
function cleardesc() {
	d = document.getElementById("description");
	d.innerHTML = "Mouse-over each button to view the biblical verse that provides the theme for that reflection.  Click to view the reflection.";
}
function hover(e) {
	if (!e) var e = window.event;
	//which link was the mouse over?
	whichlink = (e.target) ? e.target.id : e.srcElement.id;
	//choose the appropriate description - (JOHN) REFLECTIONS 1-7)
	if (whichlink=="Johnreflection1") desc = "<b>(Reflection 1) 1 JOHN, 1-4</b> - <i>&quot;What we have seen and heard we proclaim now to you, so that you too may have fellowship with us; for our fellowship is with the Father and with his Son, Jesus Christ.&quot;</i>";
	else if (whichlink=="Johnreflection2") desc = "<b>(Reflection 2) 1 JOHN 1, 9-13</b> - <i>&quot;If we say, &lsquo;we are without sin,&rsquo; we deceive ourselves.&quot;</i>";
	else if (whichlink=="Johnreflection3") desc = "<b>(Reflection 3) 1 JOHN 2, 1-6</b> - <i>&quot;Whoever claims to abide in him ought to live [just] as he lived.&quot;</i>";
	else if (whichlink=="Johnreflection4") desc = "<b>(Reflection 4) 1 JOHN 2, 7-10</b> - <i>&quot;And yet I do write a new commandment to you, which holds true in him and among you, for the darkness is passing away, and the true light is already shining.&quot;</i>";
	else if (whichlink=="Johnreflection5") desc = "<b>(Reflection 5) 1 JOHN 2, 15-17</b> - <i>&quot;If anyone loves the world, the love of the Father is not in him.&quot;</i>";
	else if (whichlink=="Johnreflection6") desc = "<b>(Reflection 6) 1 JOHN 2, 18-23</b> - <i>&quot;Children, it is the last hour; and just as you heard that the antichrist was coming, so now many antichrists have appeared.&quot;</i>";
	else if (whichlink=="Johnreflection7") desc = "<b>(Reflection 7) 1 JOHN 2, 24-29</b> - <i>&quot;Let what you heard from the beginning remain with you.&quot;</i>";
	else if (whichlink=="Johnreflection8") desc = "<b>(Reflection 8) 1 JOHN 3, 1-3</b> - <i>&quot;See what love the Father has bestowed on us that we may be called the children of God.&quot;</i>";
	else if (whichlink=="Johnreflection9") desc = "<b>(Reflection 9) 1 JOHN 3, 4-18</b> - <i>&quot;Children, let us love not in word or speech but in deed and truth.&quot;</i>";
	else if (whichlink=="Johnreflection10") desc = "<b>(Reflection 10) 1 JOHN 3, 19-24</b> - <i>&quot;Those who keep his commandments remain in him, and he in them, and the way we know that he remains in us is from the Spirit that he gave us.&quot;</i>";
	else if (whichlink=="Johnreflection11") desc = "<b>(Reflection 11) 1 JOHN 4, 7-12</b> - <i>&quot;Yet, if we love one another, God remains in us, and his love is brought to perfection in us.&quot;</i>";
	else if (whichlink=="Johnreflection12") desc = "<b>(Reflection 12) 1 JOHN 4, 13-21</b> - <i>&quot;This is the commandment we have from him: whoever loves God must also love his brother.&quot;</i>";
	else if (whichlink=="Johnreflection13") desc = "<b>(Reflection 13) 1 JOHN 5, 1-5</b> - <i>&quot;And his commandments are not burdensome, for whoever is begotten by God conquers the world.&quot;</i>";
	else if (whichlink=="Johnreflection14") desc = "<b>(Reflection 14) 1 JOHN 5, 6-21</b> - <i>&quot;I write these things to you so that you might know that you have eternal life, you who believe in the name of the Son of God.&quot;</i>";
	else if (whichlink=="Johnreflection15") desc = "<b>(Reflection 15) 2 JOHN 1, 1-12</b> - <i>&quot;Anyone who is so &quot;progressive&quot; as not to remain in the teaching of Christ does not have God; whoever remains in the teaching has the Father and the Son.&quot;</i>";


	d = document.getElementById("description");
	d.innerHTML = desc;
}


//Set up the event handlers - (JOHN)REFLECTIONS 1-7) (3 script lines per reflection)
reflection1link = document.getElementById("Johnreflection1");
reflection1link.onmouseover=hover;
reflection1link.onmouseout=cleardesc;
	reflection1link = document.getElementById("Johnreflection2");
	reflection1link.onmouseover=hover;
	reflection1link.onmouseout=cleardesc;
reflection1link = document.getElementById("Johnreflection3");
reflection1link.onmouseover=hover;
reflection1link.onmouseout=cleardesc;
	reflection1link = document.getElementById("Johnreflection4");
	reflection1link.onmouseover=hover;
	reflection1link.onmouseout=cleardesc;
reflection1link = document.getElementById("Johnreflection5");
reflection1link.onmouseover=hover;
reflection1link.onmouseout=cleardesc;
	reflection1link = document.getElementById("Johnreflection6");
	reflection1link.onmouseover=hover;
	reflection1link.onmouseout=cleardesc;
reflection1link = document.getElementById("Johnreflection7");
reflection1link.onmouseover=hover;
reflection1link.onmouseout=cleardesc;
	reflection1link = document.getElementById("Johnreflection8");
	reflection1link.onmouseover=hover;
	reflection1link.onmouseout=cleardesc;
reflection1link = document.getElementById("Johnreflection9");
reflection1link.onmouseover=hover;
reflection1link.onmouseout=cleardesc;
	reflection1link = document.getElementById("Johnreflection10");
	reflection1link.onmouseover=hover;
	reflection1link.onmouseout=cleardesc;
reflection1link = document.getElementById("Johnreflection11");
reflection1link.onmouseover=hover;
reflection1link.onmouseout=cleardesc;
	reflection1link = document.getElementById("Johnreflection12");
	reflection1link.onmouseover=hover;
	reflection1link.onmouseout=cleardesc;
reflection1link = document.getElementById("Johnreflection13");
reflection1link.onmouseover=hover;
reflection1link.onmouseout=cleardesc;
	reflection1link = document.getElementById("Johnreflection14");
	reflection1link.onmouseover=hover;
	reflection1link.onmouseout=cleardesc;
reflection1link = document.getElementById("Johnreflection15");
reflection1link.onmouseover=hover;
reflection1link.onmouseout=cleardesc;


// JavaScript Document