$(document).ready(function() {	
	$(document).everyTime(6000, function(i) {
	  $("li:not(.contato)").HideBubblePopup();
	  abreMensagemAleatoria();
	}, 0);
});


$(window).load(
	function() {
		
		$('.balao_contato li').CreateBubblePopup({
			position: 'top',
			align: 'center',
			tail : {align: 'center'}, 
			width: '300px',
			openingSpeed: 100,
			innerHtml: 'Estamos construindo o nosso novo site, até tudo ficar pronto você pode entrar em contato conosco por telefone ou email:<br><br/><strong>+55 21 3547 0911<br/>atendimento@valenteweb.com.br</strong>',   
			innerHtmlStyle: { color:'#000000', 'text-align':'center' },
			themeName: 'grey',
			selectable: true,
			themePath: 'images/jquerybubblepopup-theme'
		});	
		
	}
);


function abreMensagemAleatoria()
{
	var rand_no = Math.floor((8-0)*Math.random()) + 1;
	
	if ($(".balao_"+rand_no+" li").IsBubblePopupOpen())
	{
		rand_no = Math.floor((8-0)*Math.random()) + 1;
		
		$(".balao_"+rand_no+" li").ShowBubblePopup();
	}
	else
	{
		$(".balao_"+rand_no+" li").ShowBubblePopup();		
	}
}

function fechaMensagens()
{
	//$("li").HideAllBubblePopups();	
}
