/*
CRIADO POR JONAS

PRECISA TER O JQUERY PARA USAR

*/
function banner_inicial(){
	var timer = 10 * 1000; // 10 segundos
	$('select').hide();		
	$('body:first').append('<div class="super-popup-back"></div>').append('<div class="super-popup"></div>');
	$('.super-popup').css({
		background:'#FFF url("/imagens/banner_entrada_06052010.jpg") center center',
		width:'800px',
		height:'600px',
		position:'absolute',
		left:'50%',
		top:'50%',
		margin:'-300px -400px',
		zIndex:'90001',
		textAlign:'right'
	}).append('<div class="super-popup-fechar"></div>');
	$('.super-popup-fechar').css({
		background:'transparent',
		height:'20px',
		top:'-22px',
		position:'relative',
		zIndex:'90002',
		textAlign:'center'
	}).append('<a class="super-popup-fechar-anchor" href="javascript:void();">Continuar navegando no site ou aguarde <span class="timer">10</span> segundos</a>');
	$('.super-popup-fechar-anchor').css({
		color:'#fff',
		fontSize:'1.2em'
	});
	$('body').css('overflow','hidden');
	$('.super-popup-back').css({
		backgroundColor:'#000',
		width:'100%',
		height: $(document).height(),
		position:'absolute',
		left:'0px',
		top:'0px',
		opacity:'.8',
		zIndex:'90000'
	});
	$('.super-popup-fechar a,.super-popup,.super-popup-back').click(sumirDoMundoTodo);
	setInterval(function(){
		$('.timer').text($('.timer').text()-1);
	},1000);
	setTimeout(sumirDoMundoTodo,10000);
}
function sumirDoMundoTodo(){
	$('select').show();
	$('.super-popup,.super-popup-back').fadeOut(500,function(){
		$('body').css('overflow','');
		$(this).remove();
	});
}