// JavaScript Document
	$( function () {
		posX = Math.ceil(  ($(window).width()/2) - ($("#bannerrich").width()/2)  );
		$("#bannerrich").css("margin-left", posX );
	});

	function richOculta() {
		$("#bannerrich").hide();
	}

	limpa = setTimeout("richOculta()", 16000);

