window.addEvent( 'domready', function() {

	Locale.use( 'pt-PT' );

	$$( '.textWrapper a' ).setStyle( 'text-decoration', 'underline' );
	$$( '.textWrapper a' ).addClass( 'external' );

	// adicionar target _blank a links para o exterior
	$$('a.external').each( function( item, index ) {
		item.setProperty( 'target', '_blank' );
	});

	// menu hover effect
	var els = $$( '#header ul li a' );
	if( els.length > 0 ) {
		els.each( function( item, index ) {
			if( item.hasClass( 'active' ) ) return;
			var child = item.getChildren( 'span' )[0];
			var fx = new Fx.Tween( child, {
				duration: 200
			});
			$$( '#header ul' )[0].removeClass( 'noJs' );
			item.addEvent( 'mouseover', function() {
				fx.cancel();
				fx.start( 'top', -40, -20 );
			});
			item.addEvent( 'mouseleave', function() {
				fx.cancel();
				fx.start( 'top', -20, -40 );
			});
			item.addEvent( 'click', function() {
				fx.cancel();
				item.setStyle( 'color', '#82CB39' );
				child.setStyle( 'top', -20 );
			});
		});
	}

});

