// JavaScript Document

jQuery( function()
{
	var menu = jQuery( "#header ul" );
	
	jQuery( ".bt_email" ).nospam();

	if( jQuery( "li", menu ).is( ".current_page_item" ) )
	{
		jQuery( "li:first", menu ).removeClass( "ativo" );
	}
	
	jQuery( "a", menu ).each( function()
	{
		var $this = jQuery( this ),
			parent = $this.parent();
			
		parent.addClass( $this.text().toLowerCase() );
	});
});