var showAdviseOnLoad = true;

// vídeo de apresentação
wst.get('#presentation').loaded(function(){
	App.overlay.enable(false);
	showAdviseOnLoad = false;

	wst.get('a', this).on('click', function(evt){
		evt.preventDefault();
		wst.modules.load('cookie');

		if(wst.get('#hide-banner').E[0].checked)
			wst.cookie.set('hidebanner', '1', 30);

		App.overlay.hide();
		wst.get(this).parent().parent().remove();

		//setTimeout(showAdvise, 1);
	});
});

/*wst.doc.ready(function(){
	if(showAdviseOnLoad)
		showAdvise();
});

function showAdvise()
{
	wst.get('#videos').css('visibility', 'hidden');
	App.overlay.content('<p class="advise"><span>INFORMATIVO:</span> O MINISTÉRIO LOUVA DEUS <u>NÃO</u> ESTARÁ NO EVENTO DANCING IN THE LIGHT, REALIZADO EM SALVADOR NO DIA 30/01/2010.<br /><a href="#info" title="Veja mais">SAIBA MAIS INFORMAÇÕES</a>.<br /><br /><br /><a href="#info" title="Mais informações"><img src="imgs/dancing-in-the-light.jpg" alt="Panfleto" title="Mais informações" xml:lang="pt-BR" lang="pt-BR" /></a></p>');
	App.overlay.enable(true);
	App.overlay.show();
	App.overlay.e.on('click', function(){
		wst.get('#videos').css('visibility', 'visible');
	});
}*/