// JavaScript Document

$(document).ready(function(){
   $('.background-box').children().each(function(){
   $(this).css('opacity','0.01');
   
   $(this).animate({'opacity': '1'}, 3000)
  });
});
$(document).ready(function(){
   $('#footer').children().each(function(){
   $(this).css('opacity','0.01');
     });
   $('#header').children().each(function(){
   $(this).css('opacity','0.01');
     });
});

function footer(){
   $('#footer').children().each(function(){
   $(this).animate({'opacity': '1'}, 3000)
  });
   $('#header').children().each(function(){
   $(this).animate({'opacity': '1'}, 3000)
  });
}
