Being a parent is undoubtedly one of the most fulfilling roles you’ll ever undertake, but it does come with its own set of challenges. It’s absolutely normal to seek a bit of guidance and support along the way.
// ------------------------------------------------
// Page FadeIn - jQuery Script
// For Page FadeOut add the class .link to the href
// ------------------------------------------------
/* $(document).ready(function() {
$('body').css('display', 'none');
$('body').fadeIn(500);
$('.link').click(function(event) {
event.preventDefault();
newLocation = this.href;
$('body').fadeOut(500, newpage);
});
function newpage() {
window.location = newLocation;
}
});
new WOW().init(); */