  var deathCount = 0;
  function animateBody (start) {
    if (start) {
       $("#header h2").html("smoking <span>KILLS</span> someone in Europe<br />every <span>48</span> seconds");

       $("body").animate({backgroundColor:"#C77718"}, 38000,"linear",function (){
         $("#header h2").html("act <span>NOW</span> for a <br />Tobacco Free Europe");
         setTimeout(function (){
           $("body").animate ({backgroundColor:"#FFFFFF"},1000,function (){
             animateBody(true);
           });
         },9000);
});        
       
    }
    else {
       //$("body").animate({backgroundColor:"#FFFFFF"}, 38000,"linear");
       $("body").animate({backgroundColor:"#FFFFFF"}, 38000,"linear");
    }
  }

function counterSet () {
    $("#counter").html(deathCount+1); 
    deathCount = ((deathCount+1)%48);
    setTimeout(counterSet,1000); 
}

jQuery(document).ready(function(){
  animateBody (true);
  counterSet();
});

