By this age, they should already be packing their own lunch, walking to and from the bus stop and completing school projects independently.
At age 13, kids should begin to earn their own money, become ready to stay home alone and be responsible enough to use the internet unsupervised.
That’s according to a survey of 2,000 leading decision-makers—also known as moms.
Overwhelmingly—in 78 percent of American families—mothers are the primary manager of their children’s “firsts,” and will play the leading role in organizing and overseeing their kids’ paths to independence.
Eighty-four percent of moms report being the parent primarily responsible for getting kids to and from school. Eighty-two percent are in charge of children’s homework time. Seventy-three percent are in charge of setting and enforcing rules at home, while 81 percent take the lead on vetting media and internet consumption.
The new survey, conducted by OnePoll on behalf of smart home technology brand Alarm.com, found that compared to their partners, moms are also primarily responsible for listening and talking through problems and worries (85 percent), refereeing arguments (77 percent), and making sure play dates and social activities happen (82 percent).
Anne Ferguson, VP of marketing at Alarm.com said, “While we typically appreciate that moms are busy, the skill and effort it takes to manage a young family is underappreciated. Moms have to be coaches—directing and empowering their kids into independence—and also protectors, ensuring that children are safe, well and thriving. What’s more, most moms combine this role with a full-time job outside of the home.”
In a typical week, family management tasks take up to 36 (unpaid) hours of mom-management, and often clash with other responsibilities. Of moms who work full- or part-time, 53 percent report that managing their family at times comes into conflict with work responsibilities.
Alarm.com’s Anne Ferguson said, “Managing children as a working mom requires a network of family and trusted friends, as well as technology that keeps you in touch. We see more and more working moms using our smart home security app to stay connected to older children after school, with features like no-show alerts, remote lock control and doorbell cameras offering certainty that kids are safe when home alone.”
jQuery(document).ready(function($) {
// We only want these styles applied when javascript is enabled
$(‘.gal_content’).css(‘display’, ‘block’);
// Initialize Advanced Galleriffic Gallery
var gallery = $(‘#thumbs_32277_1’).galleriffic({
delay: 3500,
numThumbs: 12,
preloadAhead: 12,
enableTopPager: false,
enableBottomPager: false,
imageContainerSel: ‘#slideshow_32277_1’,
controlsContainerSel: ‘#controls_32277_1’,
captionContainerSel: ‘#caption_32277_1’,
loadingContainerSel: ‘#loading_32277_1’,
renderSSControls: true,
renderNavControls: false,
playLinkText: ‘Play Slideshow’,
pauseLinkText: ‘Pause Slideshow’,
enableHistory: 0,
autoStart: 0,
enableKeyboardNavigation: true,
syncTransitions: false,
defaultTransitionDuration: 300,
onTransitionOut: function(slide, caption, isSync, callback) {
slide.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0, callback);
caption.fadeTo(this.getDefaultTransitionDuration(isSync), 0.0);
},
onTransitionIn: function(slide, caption, isSync) {
var duration = this.getDefaultTransitionDuration(isSync);
slide.fadeTo(duration, 1.0);
// Position the caption at the bottom of the image and set its opacity
var slideImage = slide.find(‘img’);
caption.fadeTo(duration, 1.0);
},
onPageTransitionOut: function(callback) {
//this.hide();
setTimeout(callback, 100); // wait a bit
},
onPageTransitionIn: function() {
var prevPageLink = this.find(‘a.prev’).css({‘opacity’: ‘0.3’ , ‘display’ : ‘inline-block’, ‘cursor’ : ‘default’});
var nextPageLink = this.find(‘a.next’).css({‘opacity’: ‘0.3’ , ‘display’ : ‘inline-block’, ‘cursor’ : ‘default’});
// Show appropriate next / prev page links
if (this.displayedPage > 0)
prevPageLink.css({‘opacity’ : ‘1’ , ‘display’ : ‘inline-block’, ‘cursor’ : ‘pointer’});
var lastPage = this.getNumPages() – 1;
if (this.displayedPage < lastPage)
nextPageLink.css({'opacity' : '1' , 'display' : 'inline-block', 'cursor' : 'pointer'});
this.fadeTo('fast', 1.0);
}
});
/**************** Event handlers for custom next / prev page links **********************/
gallery.find('a.prev').click(function(e) {
gallery.previousPage();
e.preventDefault();
});
gallery.find('a.next').click(function(e) {
gallery.nextPage();
e.preventDefault();
});
});