$(function(){
    
    // Transformar link-list em menu-select (funtions.js)
    transformListSelect( $('ul#listArchive'), 'ARQUIVO' );

    // Zebrar tabela
    zTable( $('.factsheet table'), '#F0F2EC' )
    zTable( $('#comparative table'), '#F9FAF8' )
    
    // Target Blank Solution
    $('a.blank').attr('target','_blank');
    
    // Abre/Fecha do menu flutuante
    if( $('#container').height() < $('#navigation').height() ) {
        $('#container').height($('#navigation').height());
    }
    $('div.menu a').click(function(){
        if( $(this).attr('class') == "close" ) {
            $('#topo').removeClass('closed').addClass('opened');
            $(this).removeClass('close').addClass('open');
            $('#navigation').slideDown('fast');
            $(this).html('Fechar o menu');
        }
        else if( $(this).attr('class') == "open" ) {
            $('#topo').removeClass('opened').addClass('closed');
            $(this).removeClass('open').addClass('close');
            $('#navigation').slideUp('fast');
            $(this).html('Abrir o menu');
        }
    });
    
    // Anular click de blind-link
    $('a[@href=#]').mouseover(function(){
        $(this).attr('href','javascript:void(0);');
    });
    
});