header, nav, .page-header-spacer, .kidazzle-teal, header[class*=”kidazzle-teal”] {
display: none !important;
}
KIDAZZLE COLLEGE PARK
IN SMYRNA, GA
Looking for the best kidazzle college park? Kidazzleâs Little Flyers Child Development Center proudly serves families throughout Smyrna, GAâlocated just a short 5-mile drive from our primary learning headquarters.
Listen to this Article
Audio Version • 2 min listen
Why Cobb County Parents Choose Little Flyers
Finding reliable, enriching summer childcare near Smyrna, GA shouldn’t mean sitting in an hour of metro traffic. Because you are only 5 miles away, you get immediate access to our specialized summer programs right on the edge of the Cobb County district. We focus on academic retention, creative arts, and hands-on STEM activities for children ages 5-12âbuilding directly on our core Little Flyers educational curriculum.
With over 31 years of excellence, Kidazzle provides priority placement, steep tuition discounts, and waived registration fees for eligible federal employees within that 5-mile radius of Smyrna, GA. Learn more about our 31-year legacy of educational childcare in Georgia.
Local to Smyrna, GA
Conveniently located for parents commuting through the Cobb County region.
FAA Partner Discounts
Exclusive savings on summer camp programs for federal and FAA families.
let isPlaying = false;
let utterance = null;
function playArticleAudio() {
const btn = document.getElementById(âplayAudioBtnâ);
const status = document.getElementById(âaudioStatusâ);
if (isPlaying) {
window.speechSynthesis.cancel();
isPlaying = false;
btn.innerHTML = â;
status.innerText = âAudio Version ⢠2 min listenâ;
return;
}
if (‘speechSynthesis’ in window) {
const text = [
âWhy Cobb County Parents Choose Little Flyers.â,
document.getElementById(âarticle-p1â).innerText,
document.getElementById(âarticle-p2â).innerText
].join(â â);
utterance = new SpeechSynthesisUtterance(text);
// Try to grab a natural english voice
const voices = window.speechSynthesis.getVoices();
const premiumVoice = voices.find(v => v.lang.includes(âenâ) && (v.name.includes(âGoogleâ) || v.name.includes(âNaturalâ) || v.name.includes(âOnlineâ)));
if(premiumVoice) utterance.voice = premiumVoice;
utterance.onend = function() {
isPlaying = false;
btn.innerHTML = â;
status.innerText = âAudio Version ⢠2 min listenâ;
};
window.speechSynthesis.speak(utterance);
isPlaying = true;
btn.innerHTML = â;
status.innerText = âPlaying AudioâŚâ;
} else {
alert(âSorry, your browser does not support text to speech!â);
}
}
// Load voices early
if (âspeechSynthesisâ in window) { window.speechSynthesis.getVoices(); }