POTENTIAL SIDE EFFECTS are a concern with pretty much every medication that exists. We can all hear the drug commercial voice rattling off a list of them in our heads. Unfortunately, side effects from medications often overlap with oral health concerns, even when the medications aren’t treating conditions related to teeth and gums.
How Medicine Interacts With Oral Chemistry
In some cases, medications (or even vitamins) can be directly harmful to our teeth. This is a problem particularly with children’s medication, which tend to come in the form of sugary syrups and candy-like multivitamins.
Adult medicine is usually in pill form so it doesn’t have a chance to directly interact with teeth or gums, but not always. Inhalers may lead to oral side effects like oral thrush (painful or irritating patches of white fungus that grow on the tongue, the roof of the mouth, and the inside of the cheeks). A good preventative measure adults and children alike can take to avoid these direct oral side effects is to rinse with water after taking any of these kinds of medications or vitamins.
The More Indirect Effects of Medicine on Oral Health
Medications that make it past the mouth without causing direct harm can still have mouth-related side effects. One example is blood thinners, which can make the gums more vulnerable to bleeding while brushing and flossing. Gum tissue inflammation is a common side effect that can increase the risk of gum disease.
The most common oral side effect of medications, both prescribed and over-the-counter, is dry mouth. Not only can dry mouth make chewing and swallowing more difficult and uncomfortable, it can also leave the teeth and gums vulnerable to harmful oral bacteria. Saliva is the first line of defense we have against that bacteria. Without it, it’s much harder to protect against tooth decay and gum disease.
Other Weird Oral Effects Medicine Can Cause
In rare cases, osteoporosis drugs have been associated with compromised bone tissue in the jaw, which increases the risk of gum recession and tooth loss. Some medications can do strange things to our sense of taste, even if they don’t cause any real harm to our oral health. There might be a weird bitter or metallic aftertaste that lingers.
Discuss Your Side Effects With the Dentist and Your Doctor
It’s important to keep your health care professionals in the loop where side effects are concerned. If those side effects are happening inside your mouth, then make sure to tell the dentist as well as your doctor! It may be possible to change your prescription or dosage to minimize or completely eliminate the negative effects while maintaining the benefits of the medication, but only if the doctor knows what’
Visit Us
Our goal is for you to leave our office with a memorable and enjoyable experience, which is why our welcoming and compassionate staff will do everything they can to make you feel right at home.
`,
stat1: "", stat1Label: "",
stat2: "", stat2Label: "",
signature: "Nazanin Morshedi, DDS"
},
{
name: "Dr. Kazemi",
role: "Dentist In Palo Alto",
image: "/wp-content/uploads/2023/11/Dr.-Kazemi-e1639418422835.jpeg",
bio1: `
Dr. Kazemi is a board-certified Periodontist & Implant surgeon. She completed her certificate in Periodontal Surgery & Implant Dentistry at the University of Southern California, Los Angeles. During her time at USC, she was the President of ‘’Advanced Periodontology Residents Study Club’’ and was selected to receive ‘’Associate endowed scholarship’’ from USC School of Dentistry. Before her time at USC, she earned an MS degree in Clinical Translational Sciences from the University of Illinois at Chicago where she received the ‘’Board of trustees Scholarship’’ for academic excellence.
A recipient of several awards and honors, she has also lectured nationally and internationally on implant dentistry and laser dentistry. Dr. Kazemi has published several articles in peer-reviewed journals and serves as a peer reviewer and associate editor of scientific journals in the field of implant dentistry and periodontology.
Dr. Kazemi strives to make dental visits a low-stress experience with minimal discomfort. She takes pride in providing high quality evidence based care to each patient based on their unique individual needs. When not working, she spends time with her family & friends, enjoys hiking, working out, cooking and traveling.
`,
stat1: "", stat1Label: "",
stat2: "", stat2Label: "",
signature: "Dr. Kazemi"
},
];
if( doctors.length > 1 ) {
document.querySelector('#team .section-title').innerText = 'Meet Your Doctors';
} else {
document.querySelector('#team .section-title').innerText = 'Meet Your Doctor';
}
let currentDocIndex = 0;
function renderThumbnails() {
const container = document.getElementById('doctor-thumbnails');
container.innerHTML = doctors.map((doc, index) => `
`).join('');
}
function switchDoctor(index) {
if (index === currentDocIndex && document.getElementById('doc-name').innerText !== "") return;
currentDocIndex = index;
renderThumbnails();
const container = document.getElementById('doctor-spotlight-content');
// Simple fade effect
container.classList.remove('fade-in');
void container.offsetWidth; // Trigger reflow
container.classList.add('fade-in');
const doc = doctors[index];
document.getElementById('doc-image').src = doc.image;
document.getElementById('doc-name').textContent = doc.name;
document.getElementById('doc-role').textContent = doc.role;
document.getElementById('doc-bio1').innerHTML = doc.bio1;
document.getElementById('doc-stat1').textContent = doc.stat1;
document.getElementById('doc-stat1-label').textContent = doc.stat1Label;
document.getElementById('doc-stat2').textContent = doc.stat2;
document.getElementById('doc-stat2-label').textContent = doc.stat2Label;
document.getElementById('doc-signature').textContent = doc.signature;
}
document.addEventListener('DOMContentLoaded', () => {
renderThumbnails();
switchDoctor(0);
});