var footerMenu = new Array();
footerMenu[0] = new Array("http://www.thedenverhospice.org", "HOME");
footerMenu[1] = new Array("http://www.thedenverhospice.org/aboutus/Pages/contactus.aspx", "CONTACT US");
footerMenu[2] = new Array("/ourservices/pages/accessingourservices.aspx", "REQUEST SERVICES");
footerMenu[3] = new Array("https://secure3.convio.net/tdh/site/Donation2?idb=0&df_id=1300&1300.donation=form1&JServSessionIdr004=tbz8s54mh1.app303b", "DONATE");


$(document).ready(function(){
  // get the (empty) div with ID of "footer"
  var footer = $('#footerBlock')

  // add the footer links
  footer.append('<div id="footerMenu" class="footerMenu">');
  for (var i = 0; i < footerMenu.length; i++) {
    if (i > 0) { footer.append("&nbsp;&nbsp;|&nbsp;&nbsp;"); }
    footer.append('<a href="' + footerMenu[i][0] + '">' + footerMenu[i][1] + '</a>');
  }
  footer.append('</div>');

  // add a spacer
  footer.append('<span class="footerSpacer"><br><br></span>');

  // add the contact info
  footer.append('<div class="footerAddress">');
  footer.append('501 So. Cherry Street, Suite 700');
  footer.append(' &nbsp;&nbsp;|&nbsp;&nbsp; ');
  footer.append('Denver, Colorado 80246-1328');
  footer.append(' &nbsp;&nbsp;|&nbsp;&nbsp; ');
  footer.append('(303)321-2828');
  footer.append(' &nbsp;&nbsp;|&nbsp;&nbsp; ');
  footer.append('<a href="mailto:info@denverhospice.org">info@denverhospice.org</a>');
  footer.append('</div>');

  // add a spacer
  footer.append('<span class="footerSpacer"><br><br></span>');

  // add copyright info
  footer.append('<div class="footerCopyright">&copy; 2009 The Denver Hospice &#8226; The Denver Hospice is a 501 (c)(3) organization</div>');
});


//	PostionSidebar();
