$(function() {
	$(window).load(function() {
		var $box = $('#boxMensagem').fadeIn('normal');

		/*if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) {
			$box.css({ width: 420, height: 190 });
			$("p", $box).prepend('<br />');
		}*/

		$box.css({
			top : ($(document).scrollTop() + (($(window).height() - $box.height()) / 2)) - 5,
			left: (($(document).width() - $box.width() ) / 2) - 5
		});

		$(".bt_fechar", $box).click(function() {
			$box.fadeOut('normal', function() {
				$box.remove();
			});
		});
	});
});
