<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/homepage.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Reclaiming the End of Life - Home</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<link href="css/RELI-HTML.css" rel="stylesheet" type="text/css" />
<script type="text/JavaScript">
<!--
<!--
// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 8;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 0;
// the version of javascript supported
var jsVersion = 1.0;
// -----------------------------------------------------------------------------
// -->
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function AC_show_me(page) { //swap out content nav menus and content
	document.getElementById('Stage').style.display = "none";
	document.getElementById('Nabout').style.display = "none";
	document.getElementById('Nissue').style.display = "none";
	document.getElementById('Nlearn').style.display = "none";
	document.getElementById('Nnews').style.display = "none";
	document.getElementById('Nhow').style.display = "none";
	document.getElementById(page).style.display = "block";
}

function MM_swapImage(m,n,b,v,page) { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
   AC_show_me(page);
}
//-->
</script>
<script language="VBScript" type="text/vbscript">
<!-- // Visual basic helper required to detect Flash Player ActiveX control version information
Function VBGetSwfVer(i)
  on error resume next
  Dim swControl, swVersion
  swVersion = 0

  set swControl = CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
  if (IsObject(swControl)) then
    swVersion = swControl.GetVariable("$version")
  end if
  VBGetSwfVer = swVersion
End Function
// -->
</script>
<script language="JavaScript1.1" type="text/javascript">
<!-- // Detect Client Browser type
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
jsVersion = 1.1;
// JavaScript helper required to detect Flash Player PlugIn version information
function JSGetSwfVer(i){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
      		var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			descArray = flashDescription.split(" ");
			tempArrayMajor = descArray[2].split(".");
			versionMajor = tempArrayMajor[0];
			versionMinor = tempArrayMajor[1];
			if ( descArray[3] != "" ) {
				tempArrayMinor = descArray[3].split("r");
			} else {
				tempArrayMinor = descArray[4].split("r");
			}
      		versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0;
            flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
      	} else {
			flashVer = -1;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	// Can't detect in all other cases
	else {

		flashVer = -1;
	}
	return flashVer;
}
// If called with no parameters this function returns a floating point value
// which should be the version of the Flash Player or 0.0
// ex: Flash Player 7r14 returns 7.14
// If called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
 	reqVer = parseFloat(reqMajorVer + "." + reqRevision);
   	// loop backwards through the versions until we find the newest version
	for (i=25;i>0;i--) {
		if (isIE && isWin && !isOpera) {
			versionStr = VBGetSwfVer(i);
		} else {
			versionStr = JSGetSwfVer(i);
		}
		if (versionStr == -1 ) {
			return false;
		} else if (versionStr != 0) {
			if(isIE && isWin && !isOpera) {
				tempArray         = versionStr.split(" ");
				tempString        = tempArray[1];
				versionArray      = tempString .split(",");
			} else {
				versionArray      = versionStr.split(".");
			}
			versionMajor      = versionArray[0];
			versionMinor      = versionArray[1];
			versionRevision   = versionArray[2];

			versionString     = versionMajor + "." + versionRevision;   // 7.0r24 == 7.24
			versionNum        = parseFloat(versionString);
        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
			if ( (versionMajor > reqMajorVer) && (versionNum >= reqVer) ) {
				return true;
			} else {
				return ((versionNum >= reqVer && versionMinor >= reqMinorVer) ? true : false );
			}
		}
	}
	return (reqVer ? false : 0.0);
}
// -->
</script>
</head>

<body onload="MM_preloadImages('images/nav_about_a.gif','images/nav_issue_a.gif','images/nav_learn_a.gif','images/nav_newsroom_a.gif','images/nav_how_a.gif','images/lnav_contact_a.gif','images/lnav_forums_a.gif','images/lnav_join_a.gif','images/lnav_friend_a.gif')">
	<div id="seat">
	  <table border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td colspan="3"><img src="images/top_bar.gif" width="900" height="37" /></td>
        </tr>
        <tr>
          <td rowspan="2" valign="top" class="imagine">
          <script language="JavaScript" type="text/javascript">
		  <!--
		  var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
		  if(hasRightVersion) {  // if we've detected an acceptable version
		      var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
		      + 'width="588" height="412"'
		      + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
		      + '<param name="movie" value="intro.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'
		      + '<embed src="intro.swf" quality="high" bgcolor="#ffffff" '
		      + 'width="588" height="412" name="intro" align="middle"'
		      + 'play="true"'
		      + 'loop="false"'
		      + 'quality="high"'
		      + 'allowScriptAccess="sameDomain"'
		      + 'type="application/x-shockwave-flash"'
		      + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
		      + '<\/embed>'
		      + '<\/object>';
		      document.write(oeTags);   // embed the flash movie
		    } else {  // flash is too old or we can't detect the plugin
		      var alternateContent = '<img src="images/imagine_placeholder.jpg" alt="Download FlashPlayer 8.0 to View RELI Movie Clips" width="588" height="412" />';
		      document.write(alternateContent);  // insert non-flash content
		    }
		  // -->
		  </script>
		  <noscript>
		    	<span class="bodyText">This site requires javascript to function. We also recommend downloading and installing the newest version of Adobe Flash Player.</span>
			</noscript>

          </td>
          <td colspan="2"><img src="images/logo.gif" alt="Reclaiming the End of Life" width="250" height="158" /></td>
        </tr>
        <tr>
          <td valign="top" class="nav"><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('About the Initiative','','images/nav_about_a.gif',1,'Nabout')"><img src="images/nav_about.gif" alt="About the Initiative" name="About the Initiative" width="108" height="47" border="0" id="About the Initiative" /><br />
          </a><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('The Issue','','images/nav_issue_a.gif',1,'Nissue')"><img src="images/nav_issue.gif" alt="The Issue" name="The Issue" width="108" height="41" border="0" id="The Issue" /><br />
          </a><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Learn More','','images/nav_learn_a.gif',1,'Nlearn')"><img src="images/nav_learn.gif" alt="Learn More" name="Learn More" width="108" height="41" border="0" id="Learn More" /><br />
          </a><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Newsroom','','images/nav_newsroom_a.gif',1,'Nnews')"><img src="images/nav_newsroom.gif" alt="Newsroom" name="Newsroom" width="108" height="41" border="0" id="Newsroom" /><br />
          </a><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('How You Can Help','','images/nav_how_a.gif',1,'Nhow')"><img src="images/nav_how.gif" alt="How You Can Help" name="How You Can Help" width="108" height="41" border="0" id="How You Can Help" /></a></td>
          <td id="hp_cont" valign="top">
		  <div id="Nabout" style="display:none"><table width="150" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="snav"><a href="who_we_are.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">WHO WE ARE</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="initiative_goals.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">INITIATIVE GOALS</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="citizen_forums.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Citizen Forums</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="citizen_voices.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Citizen Voices</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="candidates_appearances.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Candidates Appearances</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="partners_sponsors.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Our Partners & Sponsors</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="in_the_news.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Initiative in the News</a></td>
  </tr>
</table>
</div>
		  <div id="Nissue" style="display:none"><table width="150" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="snav"><a href="crisis_defined.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Crisis Defined</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="why_should_i_care.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Why Should I Care?</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="solutions.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Solutions</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="last_rights.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Last Rights</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="news_articles.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">News Articles</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="candidates_statements.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Candidates Statements</a></td>
  </tr>
</table>
</div>
		  <div id="Nlearn" style="display:none"><table width="150" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="snav"><a href="fact_sheet.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Fact Sheet</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="talking_points.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Talking Points</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="helpful_links.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Helpful Links</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="wonk_room.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Wonk Room</a></td>
  </tr>
</table>
</div>
		  <div id="Nnews" style="display:none"><table width="150" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="snav"><a href="press_contact.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Press Contact</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="press_releases.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Press Releases</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="in_the_news.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Initiative in the News</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="fact_sheet.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Learn More</a></td>
  </tr>
</table>
</div>
		  <div id="Nhow" style="display:none"><table width="150" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="snav"><a href="#" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';"><span onClick="window.open('http://ui.constantcontact.com/d.jsp?m=1101564945684&p=oi','win','height=900,width=900,toolbar=no,scrollbars=yes');">Sign-up for E-News</span></a></td>
  </tr>
  <tr>
    <td class="snav"><a href="#" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';"><span onClick="window.open('http://ui.constantcontact.com/d.jsp?m=1101564945684&p=oi','win','height=900,width=900,toolbar=no,scrollbars=yes');">Join the Effort</span></a></td>
  </tr>
  <tr>
    <td class="snav"><a href="tell_a_friend.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Tell a Friend</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="become_a_sponsor.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Donate - Become a Sponsor</a></td>
  </tr>
  <tr>
      <td class="snav"><a href="become_a_partner.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Become a Partner</a></td>
  </tr>
  <tr>
    <td class="snav"><a href="partners_sponsors_a.php" class="snav" onmouseover="this.className='snavRed';" onmouseout="this.className='snav';">Our Partners & Sponsors</a></td>
  </tr>
</table>
</div>		  <div id="Stage"><!-- InstanceBeginEditable name="Home_cont" --><a href="#"><img src="images/jeff.gif" alt="Dying Well With Jeff Video" width="62" height="72" border="0" onclick="window.open('http://www.reclaimtheend.org/interview.htm', 'win', 'height=267,width=320,toolbar=no,scrollbars=no');" /></a><br />
	          <span class="hp_header">Dying Well</span><br />
		        <span class="hp_text">Interview with Jeff</span><br />
                <a href="#"><img src="images/camera.gif" alt="Watch Video" width="28" height="21" border="0" onclick="window.open('http://www.reclaimtheend.org/interview.htm', 'win', 'height=267,width=320,toolbar=no,scrollbars=no');" /></a>
		    <p class="hp_header"><!-- InstanceEndEditable --></div></td>
        </tr>

        <tr>
          <td colspan="3" valign="top" class="hp_footer"><table width="1037" height="194" border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td colspan="2" class="imagine">&nbsp;</td>
              <td width="451" valign="top"><a href="contact_us.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Contact Us','','images/lnav_contact_a.gif',1,'Stage')"><img src="images/lnav_contact.gif" alt="Contact Us" name="Contact Us" width="63" height="28" border="0" id="Contact Us" /></a><a href="citizen_forums.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Citizen Forums','','images/lnav_forums_a.gif',1,'Stage')"><img src="images/lnav_forums.gif" alt="Citizen Forums" name="Citizen Forums" width="63" height="28" border="0" id="Citizen Forums" /></a><a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Join the Effort','','images/lnav_join_a.gif',1,'Stage')"><img src="images/lnav_join.gif" alt="Join the Effort" name="Join the Effort" width="63" height="28" border="0" id="Join the Effort" onclick="window.open('http://ui.constantcontact.com/d.jsp?m=1101564945684&p=oi','win','height=900,width=900,toolbar=no,scrollbars=yes');" /></a><a href="tell_a_friend.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Tell a Friend','','images/lnav_friend_a.gif',1,'Stage')"><img src="images/lnav_friend.gif" alt="Tell a Friend" name="Tell a Friend" width="65" height="28" border="0" id="Tell a Friend" /></a></td>
            </tr>

            <tr>
              <td width="130" height="129" valign="top" align=center><a href="#"><img src="images/reclaim.jpg" alt="Reclaiming the End of Life video" width="75" height="68" border="0" onclick="window.open('http://www.reclaimtheend.org/reclaim.htm', 'win', 'height=534,width=640,toolbar=no,scrollbars=no');"></a><img src="images/camera.gif"><br />
										<span class="hp_header">Reclaiming</span><br>
									<span class="hp_header"> the End of Life<br>
										<b><font size="+1"><a href="#" width="75" height="68" border="0" onclick="window.open('http://www.reclaimtheend.org/reclaim.htm', 'win', 'height=534,width=640,toolbar=no,scrollbars=no');">PLAY VIDEO</a></font></b></span><br>
									<span class="hp_header"><font size="-2">12:35 mins</font></span> <span class="hp_header"></td>
              <td width="456" valign="top"><!-- InstanceBeginEditable name="hp_foot_cont" -->
               <div id="left_foot">
										<b>
</b><span class="hp_header_caps">
                </span>
										<table width="95%" border="0" cellspacing="0" cellpadding="4">
                  <tr>
                    <td valign="top"width="50%"><span class="hp_header"><span class="hp_textBlack"><font size="+1"><b>Citizen Voices: </font></span><span class="hp_textBlack">A Report on Aging, Living with Serious Illness and Family Caregiving</span></b>
														<span class="hp_subHeaderBlack"hp_header_caps"><b><a href="citizen_voices.php">    Download HERE</a></b></span><br>
													</span>
													<p><span class="hp_header"><span class="hp_textBlack"><a href="citizen_voices.php"><b>Complete Findings of Citizen Forums</b></a><br>
															<font size="-1">held from March through July 2007 in Littleton, Laconia, Manchester,
														Nashua, Keene, Concord, Portsmouth and Lebanon</font></span></p>
												</td>
                  
                  </tr>
                </table></div>

              <!-- InstanceEndEditable --></td>
              <td valign="top" width="451"><!-- InstanceBeginEditable name="hp_schedule" -->

                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr><td><br><span class="hp_header_caps"><b><a href="candidates_appearances.php">Track the Candidates</a></b><br>
													<b><a href="candidates_statements.php">Questions for Candidates</a></b><br>
													<a href="wonk_room.php"><b>Visit the Wonk Room</a></b></span>
													<br><font size="-1"><span class="hp_textBlack">Resources for journalists, policy makers, <br>    and professionals</font><br>
												
														<b><span class="hp_header_caps"><a href="in_the_news.php">In the News</a></b> </span><br>
<b><span class="hp_header_caps"><a href="http://visitor.constantcontact.com/email.jsp?&m=1101564945684">Sign Up for ENews</a></b></span></p>


											</td>
                      
                    </tr>
                  </table>
                <!-- InstanceEndEditable --></td>
            </tr>
            <tr>
              <td colspan="2">&nbsp;</td>
              <td width="451"><img src="images/spacer.gif" width="312" height="30" border="0" usemap="#Map" /></td>
            </tr>
          </table></td>
        </tr>
      </table>
</div>

<map name="Map" id="Map">
<area shape="rect" coords="106,6,143,20" href="index.php" />
<area shape="rect" coords="152,4,195,22" href="sitemap.php" /> <area shape="rect" coords="202,6,265,22" href="contact_us.php" /> </map></body>

<!-- InstanceEnd --></html>