WE ALL KNOW how important daily brushing and flossing are to a growing child’s smile. We know about scheduling regular dental appointments, and hopefully we know that cutting back on sugar and keeping it to mealtimes instead of snacks throughout the day is also important. But what about the vitamins and minerals that help build those healthy smiles in the first place?
Vitamins for Oral Health
What keeps saliva flowing so it can protect our teeth and gums? Vitamin A! Vitamin C is a powerful antioxidant that helps our bodies heal and fight inflammation. When kids don’t get enough, their gums could become more prone to bleeding and their teeth can become looser.
Vitamin D signals our intestines to absorb vitamins into the bloodstream and helps our bones stay dense and strong. Vitamins B2, 3, and 12 are important for reducing the risk of developing canker sores in the mouth, and B3 also helps us convert food into energy.
How About Those Minerals?
Calcium is great for building strong teeth and bones, and magnesium helps the body absorb it. We need iron to maintain good oxygen levels in our cells. Finally, zinc helps us fight oral bacteria and plaque by making it harder for it to build up along the gumline.
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);
});