WHAT’S SO BAD about chewing ice? It can actually do a lot of permanent damage to teeth, and yet many people have a habit of chewing ice that can be difficult to quit. Let’s look closer at ice chewing and its effects on dental health.
Compulsive Ice Eating, or Pagophagia
The scientific name for compulsive ice eating is pagophagia. For some people, it goes beyond the level of a bad habit and actually indicates a psychological disorder called pica. Pica is the compulsion to eat non-food items such as dirt, clay, hair, or ice, and it is sometimes caused by a nutritional deficiency.
How Iron Deficiency Anemia Leads to Eating Ice
Recent studies have found a connection between the compulsive eating of ice and iron deficiency anemia, a condition that affects 3% of men and 20% of women (a number that goes up to 50% for pregnant women).
What do iron levels have to do with eating ice? Ice doesn’t contain iron, so how would eating it help with an iron deficiency? It’s actually pretty fascinating. Our red blood cells require iron to be able to effectively carry oxygen throughout our bodies. A person who is iron deficient doesn’t get as much oxygen to their brain. By eating ice, they stimulate the blood flow to the head (and consequently the brain), giving them a temporary boost in alertness and mental clarity.
How Ice Affects Our Teeth and Gums
All of that might seem like a clever workaround for iron deficiency, but it comes with serious drawbacks. Tooth enamel is the strongest substance in the body, but it’s very brittle. Ice isn’t dangerous to chew merely because it is hard, but specifically because it is cold.
Crunching and grinding ice cubes (no matter how much or what their texture is) makes the enamel expand and contract like pavement in places that get a lot of snow. Just like that pavement, the enamel will develop cracks over time.
The weaker the enamel is, the more vulnerable the rest of the tooth is to painful sensitivity and decay. Chewing ice isn’t good for gum tissue either. Because of its temperature, it creates a numbing effect while chewing, which makes it harder to notice an injury if it slips and slices the gums. Ice can even chip or break teeth.
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);
});