/* Customer Javascript */

Ext.onReady(function(){
 
  if(Ext.get('location')){
   Ext.get('location').first().replaceWith({tag: 'a',  href: '/appointment.html', html: 'APPOINTMENT REQUEST' });
  }
 
});


Ext.onReady(function(){
 
  if(Ext.get('appointment')){
   Ext.get('appointment').first().replaceWith({tag: 'a',  href: 'https://login.sesamecommunications.com/grovehealth/index.html', html: 'PATIENT LOGIN', target: '_blank' });
  }
 
});

