wst.modules.flash.loaded = true;

// janelas popup
wst.get('a[rel=popup]').loaded(function(){
	wst.get(this).on('click', function(evt){
		evt.preventDefault();

		window.open(this.href);
	});
});

// chat
wst.get('#chat-link a').loaded(function(){
	wst.get(this).on('click', function(evt){
		evt.preventDefault();

		window.open(this.href, 'chat', 'toolbal=no,resizable=no,width=370,height=465');
	});
});

wst.doc.ready(function(){
	if(!wst.flash.hasFlash)
	{
		App.overlay.error('<p class="center">Este site requer a instalação do plugin Flash Player 8 ou superior.<br />Faça a instalação acessando o site da <a href="http://get.adobe.com/br/flashplayer/" class="popup" title="">Adobe</a>.</p>');
		App.overlay.enable(false);
		App.overlay.show();
	}
});