
function bater(){
        $("#img_coracao").animate({width: 160}, 800);
	$("#img_coracao").animate({width: 178}, 800);
        bater();
}

function esconderMenu(){
    
    $("#img_logo").css({display: "block"});
    $("#coracaoBatendo").css({display: "none"});
    $("#img_logo").animate({left: "+=720px", top: "-=70px", width: "-=200px", height: "-=200px"}, "slow");   
    $("#img_maisSaude").animate({top: "-=370px" , width: "-=30px", height: "-=60px"}, "slow");
}

function mostrarMenu(){           
    $("#img_logo").animate({left: "-=720px", top: "+=70px", width: "+=200px", height: "+=200px"}, "slow",   
    function(){         
        $("#img_logo").css({display: "none"});
        $("#coracaoBatendo").css({display: "block"});   
    }); 
    $("#img_maisSaude").animate({top: "+=370px", width: "+=30px", height: "+=60px"});
    
    $("#conteudo").html("");
    $("#conteudo").css({ display:"none" });
    $("#img_prestadores").fadeIn("slow");

}
