IT’S THAT TIME of the year when we take stock of what we’re thankful for. Even in a turbulent year, there’s plenty that goes on that list, from our families and friends to new skills we’ve developed, and we hope that hard-working dental professionals are included for a lot of people!
Healthy Smiles Come Easier With Modern Dentistry
Before you scoff at the idea of putting dentists on a list of things to be grateful for, hear us out. It’s not just about the treatment we receive at our dental exams; it’s more than that. Dentists have led the charge for good dental habits and awareness of the harm sugar can do to our teeth and gums. Let’s go over just a few of the things that are widely understood these days thanks to dentists.
The Importance of a Daily Dental Health Routine
All our lives, we’ve heard dentists tell us to brush twice a day for two full minutes and to floss daily. This is because neglecting to brush and floss or not doing a thorough job allows plaque to build up, calcify into tartar, and increase the risk of gum disease and tooth decay. However, it’s also important to be gentle with the floss and not to brush too hard, because overbrushing can be a problem as well. That’s why dentists recommend soft-bristled brushes!
How We Keep Our Smiles Bright and Breath Fresh
Dentists also help us out with great tips for how to keep our breath fresh, like making sure to include scraping our tongues in our daily hygiene routines. Lots of bacteria can get trapped in the rough surface of the tongue, so we should be cleaning it off regularly using tongue scrapers! (Simply using a toothbrush for that won’t be very effective.)
Another important way to keep our breath fresh is to cut back on our sugar consumption, because that’s smelly oral bacteria’s favorite food! We should also be breathing through our noses whenever possible, because mouth-breathing dries out our mouths, leaving us with less saliva to wash away unpleasant smells.
Regular Dental Check-Ups Matter!
The old saying that an ounce of prevention is worth a pound of cure is absolutely true when it comes to dental health. Regular dental exams (meaning every six months) are the best way to catch little problems before they can become big (and expensive). Good to know!
It Goes Both Ways: We’re Thankful for Our Patients!
We’re so grateful that we get to play a role in keeping our patients’ smiles healthy! We hope the remainder of the year is wonderful for all of you and that you have many opportunities to show off your gorgeous smiles.
We look forward to seeing you!
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);
});