$(function(){
    // Abre links com o rel external em novas janelas
    $("a[rel~='external']").click(function(){
        window.open($(this).attr('href'));
        return false;
    });

    // Efeito menu
    $('#nav a').hover(function(){
        $(this).stop('true','true').animate({ color: '#aca700' }, 300);
        $(this).parent().stop('true','true').animate({ backgroundPosition:'0 0' }, 300);
    },function(){
        $(this).stop('true','true').animate({ color: '#a8a8a8' }, 300);
        $(this).parent().stop('true','true').animate({ backgroundPosition:'-10px 0' }, 300);
    });
    
    $('.bta').hover(function(){
        $(this).children().stop('true','true').animate({ opacity: 1}, 300);
    },function(){
        $(this).children().stop('true','true').animate({ opacity: 0}, 300);
    });
    
    // Zoom imagem página histórico
    $('.historico_img').click(function(){
        $('.flutuante').lightbox_me({
            centered: true,
            closeSelector: '.fechar',
            overlayCSS: { background: 'black', opacity: .85 }
        });
    });
    
    // Flutuante da pagina de produtos
    $('td.produto a.lightbox_opener').click(function() {
        var idProduto = $(this).closest('td.produto').attr('id').split('_').pop();
        $('#flutuante_produto_'+idProduto).lightbox_me({
            centered: true,
            closeSelector: '.fechar a',
            overlayCSS: { background: 'black', opacity: .85 }
        });
        return false;
    });
})

