<!--
function showText(id) { //swaps out divs on sub pages
 Element.siblings(id).each( function(element) { //find visible div and hide it
  if(element.visible() &&  element != $('intro') && element != $('print_address')) {
    element.hide();
    navelement = 'n'+ Element.identify(element);
    $(navelement).removeClassName('selected');
    //Effect.Fade(element);
  }
 });  
 Effect.Appear(id, { duration: 1.0 });
 $('n'+id).addClassName('selected');
 photoelement = id + 'photos';
 if ($(photoelement)) {
   swapPhoto(photoelement);
 } else {
   swapPhoto('lcphotos');
}
 
}

function swapPhoto(id) {
 Element.siblings(id).each( function(element) { //find visible div and hide it
  if(element.visible() &&  element != $('address')) {
    element.hide();
  }
 });  
Effect.Appear(id, { duration: 1.0 });
}

function showSelectedAnchor() {
 if (self.document.location.hash != null && $(self.document.location.hash.substring(1))) {
   showText(self.document.location.hash.substring(1));
 }

}

//-->
