$(document).ready(function() {
	
	/*$("#msgEndereco").show().animate(2000, function(){
		$(this).hide();
	});*/

	$("#msgEndereco").show().animate({opacity: 1}, 12000, function(){
    	$(this).hide();
	});
	
	$(".btnFechar").click(function(){
		$("#msgEndereco").hide();
		return false;
	})
});
